|
|
|
@ -11,7 +11,7 @@ buildscript {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
dependencies {
|
|
|
|
|
classpath 'com.android.tools.build:gradle:8.4.0'
|
|
|
|
|
classpath 'com.android.tools.build:gradle:8.5.0'
|
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
|
classpath "org.jetbrains.kotlin:kotlin-serialization:$kotlin_version"
|
|
|
|
|
classpath("com.ncorti.ktfmt.gradle:plugin:0.17.0")
|
|
|
|
@ -85,37 +85,37 @@ android {
|
|
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
|
// Android dependencies.
|
|
|
|
|
implementation "androidx.core:core:1.12.0"
|
|
|
|
|
implementation 'androidx.core:core-ktx:1.12.0'
|
|
|
|
|
implementation "androidx.core:core:1.13.1"
|
|
|
|
|
implementation 'androidx.core:core-ktx:1.13.1'
|
|
|
|
|
implementation "androidx.browser:browser:1.8.0"
|
|
|
|
|
implementation "androidx.security:security-crypto:1.1.0-alpha06"
|
|
|
|
|
implementation "androidx.work:work-runtime:2.9.0"
|
|
|
|
|
|
|
|
|
|
// Kotlin dependencies.
|
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.3"
|
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.0"
|
|
|
|
|
implementation 'junit:junit:4.12'
|
|
|
|
|
runtimeOnly "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.0"
|
|
|
|
|
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.8.1"
|
|
|
|
|
implementation 'junit:junit:4.13.2'
|
|
|
|
|
runtimeOnly "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.8.1"
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
|
|
|
implementation "org.jetbrains.kotlin:kotlin-reflect:$kotlin_version"
|
|
|
|
|
|
|
|
|
|
// Compose dependencies.
|
|
|
|
|
def composeBom = platform('androidx.compose:compose-bom:2023.06.01')
|
|
|
|
|
def composeBom = platform('androidx.compose:compose-bom:2024.06.00')
|
|
|
|
|
implementation composeBom
|
|
|
|
|
implementation 'androidx.compose.material3:material3:1.2.1'
|
|
|
|
|
implementation 'androidx.compose.material:material-icons-core:1.6.3'
|
|
|
|
|
implementation "androidx.compose.ui:ui:1.6.3"
|
|
|
|
|
implementation "androidx.compose.ui:ui-tooling:1.6.3"
|
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.7.0'
|
|
|
|
|
implementation 'androidx.activity:activity-compose:1.8.2'
|
|
|
|
|
implementation 'androidx.compose.material:material-icons-core:1.6.8'
|
|
|
|
|
implementation "androidx.compose.ui:ui:1.6.8"
|
|
|
|
|
implementation "androidx.compose.ui:ui-tooling:1.6.8"
|
|
|
|
|
implementation 'androidx.lifecycle:lifecycle-viewmodel-ktx:2.8.2'
|
|
|
|
|
implementation 'androidx.activity:activity-compose:1.9.0'
|
|
|
|
|
implementation "com.google.accompanist:accompanist-permissions:$accompanist_version"
|
|
|
|
|
implementation "com.google.accompanist:accompanist-systemuicontroller:$accompanist_version"
|
|
|
|
|
implementation "androidx.core:core-splashscreen:1.1.0-alpha02"
|
|
|
|
|
implementation "androidx.core:core-splashscreen:1.1.0-rc01"
|
|
|
|
|
|
|
|
|
|
// Navigation dependencies.
|
|
|
|
|
def nav_version = "2.7.7"
|
|
|
|
|
implementation "androidx.navigation:navigation-compose:$nav_version"
|
|
|
|
|
implementation "androidx.navigation:navigation-ui:$nav_version"
|
|
|
|
|
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
|
|
|
|
|
|
|
|
|
|
// Supporting libraries.
|
|
|
|
|
implementation("io.coil-kt:coil-compose:2.6.0")
|
|
|
|
@ -128,10 +128,10 @@ dependencies {
|
|
|
|
|
|
|
|
|
|
// Integration Tests
|
|
|
|
|
androidTestImplementation composeBom
|
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.5.2'
|
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit-ktx:1.1.5'
|
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
|
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
|
|
|
|
|
androidTestImplementation 'androidx.test:runner:1.6.0'
|
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit-ktx:1.2.0'
|
|
|
|
|
androidTestImplementation 'androidx.test.ext:junit:1.2.0'
|
|
|
|
|
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.0'
|
|
|
|
|
implementation 'androidx.test.uiautomator:uiautomator:2.3.0'
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|