Skip to content

Commit cf3b041

Browse files
authored
Merge pull request #8 from plaidev/feat/nubrick-group
feat: update group to io.nubrick
2 parents 4128010 + 3311110 commit cf3b041

File tree

79 files changed

+348
-355
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

79 files changed

+348
-355
lines changed

app/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ plugins {
44
}
55

66
android {
7-
namespace = "com.nativebrik.example"
7+
namespace = "io.nubrick.example"
88
compileSdk = 36
99

1010
defaultConfig {
11-
applicationId = "com.nativebrik.example"
11+
applicationId = "io.nubrick.example"
1212
minSdk = 26
1313
targetSdk = 36
1414
versionCode = 1
@@ -50,7 +50,7 @@ android {
5050
}
5151

5252
dependencies {
53-
implementation(project(":nativebrik"))
53+
implementation(project(":nubrick"))
5454

5555
implementation("androidx.core:core-ktx:1.12.0")
5656
implementation("androidx.lifecycle:lifecycle-runtime-ktx:2.7.0")

e2e/src/androidTest/java/com/nativebrik/e2e/ExampleInstrumentedTest.kt renamed to app/src/androidTest/kotlin/io/nubrick/example/ExampleInstrumentedTest.kt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.nativebrik.e2e
1+
package io.nubrick.example
22

33
import androidx.test.platform.app.InstrumentationRegistry
44
import androidx.test.ext.junit.runners.AndroidJUnit4
@@ -19,6 +19,6 @@ class ExampleInstrumentedTest {
1919
fun useAppContext() {
2020
// Context of the app under test.
2121
val appContext = InstrumentationRegistry.getInstrumentation().targetContext
22-
assertEquals("com.nativebrik.e2e", appContext.packageName)
22+
assertEquals("io.nubrick.example", appContext.packageName)
2323
}
24-
}
24+
}

app/src/main/AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,14 @@
1313
android:roundIcon="@mipmap/ic_launcher_round"
1414
android:supportsRtl="true"
1515
android:usesCleartextTraffic="true"
16-
android:theme="@style/Theme.NativebrikAndroid"
16+
android:theme="@style/Theme.NubrickAndroid"
1717
android:enableOnBackInvokedCallback="true"
1818
tools:targetApi="31">
1919
<activity
2020
android:name=".MainActivity"
2121
android:exported="true"
2222
android:label="@string/app_name"
23-
android:theme="@style/Theme.NativebrikAndroid">
23+
android:theme="@style/Theme.NubrickAndroid">
2424
<intent-filter>
2525
<action android:name="android.intent.action.MAIN" />
2626
<category android:name="android.intent.category.DEFAULT" />

app/src/main/java/com/nativebrik/example/MainActivity.kt renamed to app/src/main/kotlin/io/nubrick/example/MainActivity.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.nativebrik.example
1+
package io.nubrick.example
22

33
import android.os.Bundle
44
import androidx.activity.ComponentActivity
@@ -15,11 +15,11 @@ import androidx.compose.runtime.Composable
1515
import androidx.compose.ui.Modifier
1616
import androidx.compose.ui.tooling.preview.Preview
1717
import androidx.compose.ui.unit.dp
18-
import com.nativebrik.example.ui.theme.NubrickAndroidTheme
19-
import com.nativebrik.sdk.Config
20-
import com.nativebrik.sdk.Nubrick
21-
import com.nativebrik.sdk.NubrickClient
22-
import com.nativebrik.sdk.NubrickProvider
18+
import io.nubrick.example.ui.theme.NubrickAndroidTheme
19+
import io.nubrick.sdk.Config
20+
import io.nubrick.sdk.Nubrick
21+
import io.nubrick.sdk.NubrickClient
22+
import io.nubrick.sdk.NubrickProvider
2323

2424
class MainActivity : ComponentActivity() {
2525
private lateinit var nubrick: NubrickClient

e2e/src/main/java/com/nativebrik/e2e/ui/theme/Color.kt renamed to app/src/main/kotlin/io/nubrick/example/ui/theme/Color.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.nativebrik.e2e.ui.theme
1+
package io.nubrick.example.ui.theme
22

33
import androidx.compose.ui.graphics.Color
44

e2e/src/main/java/com/nativebrik/e2e/ui/theme/Theme.kt renamed to app/src/main/kotlin/io/nubrick/example/ui/theme/Theme.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.nativebrik.e2e.ui.theme
1+
package io.nubrick.example.ui.theme
22

33
import android.app.Activity
44
import android.os.Build

e2e/src/main/java/com/nativebrik/e2e/ui/theme/Type.kt renamed to app/src/main/kotlin/io/nubrick/example/ui/theme/Type.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.nativebrik.e2e.ui.theme
1+
package io.nubrick.example.ui.theme
22

33
import androidx.compose.material3.Typography
44
import androidx.compose.ui.text.TextStyle
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
<resources>
2-
<string name="app_name">Nativebrik android</string>
3-
</resources>
2+
<string name="app_name">Nubrick android</string>
3+
</resources>

app/src/main/res/values/themes.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<resources>
3-
4-
<style name="Theme.NativebrikAndroid" parent="android:Theme.Material.Light.NoActionBar" />
5-
</resources>
3+
<style name="Theme.NubrickAndroid" parent="android:Theme.Material.Light.NoActionBar" />
4+
</resources>

e2e/src/test/java/com/nativebrik/e2e/ExampleUnitTest.kt renamed to app/src/test/kotlin/io/nubrick/example/ExampleUnitTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
package com.nativebrik.e2e
1+
package io.nubrick.example
22

33
import org.junit.Test
44

0 commit comments

Comments
 (0)