Skip to content

Commit

Permalink
fixed namespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
pgautier404 committed Feb 5, 2024
1 parent 6f355e5 commit 349e548
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ plugins {
}

android {
namespace = "com.example.moderatedchat"
namespace = "software.momento.kotlin.moderatedchat"
compileSdk = 34

defaultConfig {
applicationId = "com.example.moderatedchat"
applicationId = "software.momento.kotlin.moderatedchat"
minSdk = 26
targetSdk = 34
versionCode = 1
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.moderatedchat
package software.momento.kotlin.moderatedchat

import androidx.test.platform.app.InstrumentationRegistry
import androidx.test.ext.junit.runners.AndroidJUnit4
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.moderatedchat
package software.momento.kotlin.moderatedchat

import android.content.pm.ActivityInfo
import android.net.Uri
Expand Down Expand Up @@ -50,7 +50,6 @@ import androidx.compose.ui.text.input.KeyboardType
import androidx.compose.ui.unit.dp
import coil.compose.AsyncImage
import coil.request.ImageRequest
import com.example.moderatedchat.ui.theme.ModeratedChatTheme
import com.google.gson.Gson
import kotlinx.coroutines.Dispatchers
import kotlinx.coroutines.Job
Expand All @@ -61,6 +60,7 @@ import kotlinx.coroutines.launch
import kotlinx.coroutines.withContext
import kotlinx.coroutines.yield
import org.json.JSONObject
import software.momento.kotlin.moderatedchat.ui.theme.ModeratedChatTheme
import software.momento.kotlin.sdk.CacheClient
import software.momento.kotlin.sdk.TopicClient
import software.momento.kotlin.sdk.auth.CredentialProvider
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.moderatedchat.ui.theme
package software.momento.kotlin.moderatedchat.ui.theme
import androidx.compose.ui.graphics.Color

val md_theme_light_primary = Color(0xFF006C4A)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.moderatedchat.ui.theme
package software.momento.kotlin.moderatedchat.ui.theme

import androidx.compose.foundation.isSystemInDarkTheme
import androidx.compose.material3.MaterialTheme
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.moderatedchat.ui.theme
package software.momento.kotlin.moderatedchat.ui.theme

import androidx.compose.material3.Typography
import androidx.compose.ui.text.TextStyle
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package com.example.moderatedchat
package software.momento.kotlin.moderatedchat

import org.junit.Test

Expand Down

0 comments on commit 349e548

Please sign in to comment.