Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.main.core"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion main-runtime-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.main.runtime.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion main-runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.main.runtime"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion main-runtime/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<application>
<activity
android:name=".runtime.KickActivity"
android:name="ru.bartwell.kick.runtime.KickActivity"
android:exported="false" />
</application>
</manifest>
2 changes: 1 addition & 1 deletion module/firebase/firebase-analytics-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.firebaseanalytics.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/firebase/firebase-analytics/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.firebaseanalytics"
compileSdk = 35

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.fcm.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/firebase/firebase-cloud-messaging/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.fcm"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/logging/logging-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.logging.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/logging/logging/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.logging"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/logging/logging/src/androidMain/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<application>
<provider
android:name=".module.logging.feature.table.util.KickFileProvider"
android:name="ru.bartwell.kick.module.logging.feature.table.util.KickFileProvider"
android:authorities="${applicationId}.kickfileprovider"
android:exported="false"
android:grantUriPermissions="true">
Expand Down
2 changes: 1 addition & 1 deletion module/network/ktor3-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.ktor3.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/network/ktor3/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.ktor3"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/settings/control-panel-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.controlpanel.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/settings/control-panel/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.controlpanel"
compileSdk = 35

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class ControlPanelIosUiTest {
@Test
fun interactions() = runComposeUiTest {
val items = listOf(
ControlPanelItem("FeatureFlag", InputType.Boolean(false), null),
ControlPanelItem("FeatureFlag", InputType.Boolean(false)),
ControlPanelItem("MaxItems", InputType.Int(5), Editor.InputNumber(min = 0.0, max = 100.0)),
ControlPanelItem("Mode", InputType.String("A"), Editor.InputString(singleLine = true))
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class ControlPanelUiTest {
@Test
fun back_and_save_and_toggle_and_number_and_string() {
val items = listOf(
ControlPanelItem("FeatureFlag", InputType.Boolean(false), null),
ControlPanelItem("FeatureFlag", InputType.Boolean(false)),
ControlPanelItem("MaxItems", InputType.Int(5), Editor.InputNumber(min = 0.0, max = 100.0)),
ControlPanelItem("Mode", InputType.String("A"), Editor.InputString(singleLine = true))
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.multiplatformsettings.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/settings/multiplatform-settings/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.multiplatformsettings"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/sqlite/sqlite-room-adapter-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick.adapter.room"
namespace = "ru.bartwell.kick.adapter.room.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/sqlite/sqlite-runtime-stub/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.sqlite.runtime.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/sqlite/sqlite-runtime/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.sqlite.runtime"
compileSdk = 35

defaultConfig {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.sqlite.sqldelight.stub"
compileSdk = 35

defaultConfig {
Expand Down
2 changes: 1 addition & 1 deletion module/sqlite/sqlite-sqldelight-adapter/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ kotlin {
}

android {
namespace = "ru.bartwell.kick"
namespace = "ru.bartwell.kick.module.sqlite.sqldelight"
compileSdk = 35

defaultConfig {
Expand Down