Bump version
This commit is contained in:
@@ -5,12 +5,13 @@ plugins {
|
||||
id "kotlin-android"
|
||||
id "kotlin-parcelize"
|
||||
id "com.google.devtools.ksp"
|
||||
id "org.jetbrains.kotlin.plugin.compose"
|
||||
id "com.github.triplet.play"
|
||||
}
|
||||
|
||||
android {
|
||||
namespace "io.nekohasekai.sfa"
|
||||
compileSdk 35
|
||||
compileSdk 36
|
||||
|
||||
ndkVersion "28.0.13004108"
|
||||
|
||||
@@ -85,6 +86,7 @@ android {
|
||||
buildFeatures {
|
||||
viewBinding true
|
||||
aidl true
|
||||
compose true
|
||||
}
|
||||
|
||||
applicationVariants.configureEach { variant ->
|
||||
@@ -103,10 +105,10 @@ dependencies {
|
||||
implementation "androidx.appcompat:appcompat:1.7.1"
|
||||
implementation "com.google.android.material:material:1.12.0"
|
||||
implementation "androidx.constraintlayout:constraintlayout:2.2.1"
|
||||
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.1"
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.1"
|
||||
implementation "androidx.navigation:navigation-fragment-ktx:2.9.1"
|
||||
implementation "androidx.navigation:navigation-ui-ktx:2.9.1"
|
||||
implementation "androidx.lifecycle:lifecycle-livedata-ktx:2.9.2"
|
||||
implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.9.2"
|
||||
implementation "androidx.navigation:navigation-fragment-ktx:2.9.3"
|
||||
implementation "androidx.navigation:navigation-ui-ktx:2.9.3"
|
||||
implementation "com.google.zxing:core:3.5.3"
|
||||
implementation "androidx.room:room-runtime:2.7.2"
|
||||
implementation "androidx.coordinatorlayout:coordinatorlayout:1.3.0"
|
||||
@@ -115,8 +117,8 @@ dependencies {
|
||||
implementation "androidx.camera:camera-lifecycle:1.4.2"
|
||||
implementation "androidx.camera:camera-camera2:1.4.2"
|
||||
ksp "androidx.room:room-compiler:2.7.2"
|
||||
implementation "androidx.work:work-runtime-ktx:2.10.2"
|
||||
implementation "androidx.browser:browser:1.8.0"
|
||||
implementation "androidx.work:work-runtime-ktx:2.10.3"
|
||||
implementation "androidx.browser:browser:1.9.0"
|
||||
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.10.2"
|
||||
|
||||
// DO NOT UPDATE (minSdkVersion updated)
|
||||
@@ -129,6 +131,19 @@ dependencies {
|
||||
implementation "com.google.guava:guava:33.4.8-android"
|
||||
playImplementation "com.google.android.play:app-update-ktx:2.1.0"
|
||||
playImplementation "com.google.android.gms:play-services-mlkit-barcode-scanning:18.3.1"
|
||||
|
||||
def composeBom = platform('androidx.compose:compose-bom:2025.07.00')
|
||||
implementation composeBom
|
||||
androidTestImplementation composeBom
|
||||
implementation 'androidx.compose.material3:material3'
|
||||
implementation 'androidx.compose.ui:ui-tooling-preview'
|
||||
debugImplementation 'androidx.compose.ui:ui-tooling'
|
||||
androidTestImplementation 'androidx.compose.ui:ui-test-junit4'
|
||||
debugImplementation 'androidx.compose.ui:ui-test-manifest'
|
||||
implementation 'androidx.compose.material:material-icons-extended'
|
||||
implementation 'androidx.activity:activity-compose:1.10.1'
|
||||
implementation 'me.zhanghai.compose.preference:library:1.1.1'
|
||||
implementation "androidx.navigation:navigation-compose:2.9.3"
|
||||
}
|
||||
|
||||
def playCredentialsJSON = rootProject.file("service-account-credentials.json")
|
||||
|
||||
Reference in New Issue
Block a user