|
@@ -7,6 +7,14 @@ plugins {
|
|
|
}
|
|
|
|
|
|
android {
|
|
|
+ signingConfigs {
|
|
|
+ debug {
|
|
|
+ storeFile file('../alpha.jks')
|
|
|
+ storePassword 'asdqwe123'
|
|
|
+ keyAlias 'alpha'
|
|
|
+ keyPassword 'asdqwe123'
|
|
|
+ }
|
|
|
+ }
|
|
|
namespace 'io.nexilis.alpha'
|
|
|
compileSdk 34
|
|
|
|
|
@@ -24,9 +32,13 @@ android {
|
|
|
}
|
|
|
|
|
|
buildTypes {
|
|
|
+ debug {
|
|
|
+ signingConfig signingConfigs.debug
|
|
|
+ }
|
|
|
release {
|
|
|
minifyEnabled false
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
+ signingConfig signingConfigs.debug
|
|
|
}
|
|
|
}
|
|
|
compileOptions {
|
|
@@ -38,6 +50,7 @@ android {
|
|
|
}
|
|
|
buildFeatures {
|
|
|
compose true
|
|
|
+ buildConfig true
|
|
|
}
|
|
|
composeOptions {
|
|
|
kotlinCompilerExtensionVersion '1.5.3'
|
|
@@ -56,23 +69,24 @@ dependencies {
|
|
|
implementation "androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0"
|
|
|
implementation 'androidx.activity:activity-compose:1.8.2'
|
|
|
implementation project(path: ':cpaas-lite')
|
|
|
- testImplementation 'junit:junit:4.13.2'
|
|
|
- androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
- androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
|
+ testImplementation("junit:junit:4.13.2")
|
|
|
+ androidTestImplementation("androidx.test.ext:junit:1.1.5")
|
|
|
+ androidTestImplementation("androidx.test.espresso:espresso-core:3.5.1")
|
|
|
+ androidTestImplementation(platform("androidx.compose:compose-bom:2024.02.01"))
|
|
|
+ androidTestImplementation("androidx.compose.ui:ui-test-junit4")
|
|
|
+ debugImplementation("androidx.compose.ui:ui-tooling")
|
|
|
+ debugImplementation("androidx.compose.ui:ui-test-manifest")
|
|
|
|
|
|
implementation 'androidx.navigation:navigation-compose:2.7.7'
|
|
|
implementation 'io.coil-kt:coil-compose:2.2.2'
|
|
|
|
|
|
- implementation platform('androidx.compose:compose-bom:2024.02.00')
|
|
|
+ implementation platform('androidx.compose:compose-bom:2024.02.01')
|
|
|
implementation "androidx.compose.ui:ui"
|
|
|
implementation "androidx.compose.ui:ui-tooling-preview"
|
|
|
implementation 'androidx.compose.material3:material3'
|
|
|
implementation "androidx.compose.material:material-icons-extended"
|
|
|
implementation "androidx.compose.runtime:runtime"
|
|
|
implementation "androidx.compose.runtime:runtime-livedata"
|
|
|
- debugImplementation "androidx.compose.ui:ui-tooling"
|
|
|
- debugImplementation "androidx.compose.ui:ui-test-manifest"
|
|
|
- androidTestImplementation "androidx.compose.ui:ui-test-junit4"
|
|
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.1"
|