diff --git a/app/build.gradle b/app/build.gradle index f6ccf88e852..f942a2632d2 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -159,6 +159,9 @@ android { pickFirsts += ['META-INF/atomicfu.kotlin_module'] excludes += ['META-INF/INDEX.LIST', 'META-INF/DEPENDENCIES', 'META-INF/LICENSE.md', 'META-INF/NOTICE.md'] } + jniLibs { + useLegacyPackaging true + } } kotlinOptions { @@ -215,7 +218,7 @@ dependencies { implementation 'androidx.glance:glance-appwidget:1.0.0' // Room - def room_version = '2.5.2' + def room_version = '2.6.1' implementation "androidx.room:room-runtime:$room_version" implementation "androidx.room:room-ktx:$room_version" implementation "androidx.room:room-rxjava2:$room_version" @@ -225,7 +228,7 @@ dependencies { // optional - ReactiveStreams support for LiveData implementation "androidx.lifecycle:lifecycle-reactivestreams-ktx:$lifecycle_version" - implementation 'androidx.recyclerview:recyclerview:1.3.1' + implementation 'androidx.recyclerview:recyclerview:1.3.2' implementation "com.google.android.material:material:$material_version" @@ -249,7 +252,7 @@ dependencies { implementation 'me.relex:circleindicator:2.1.6' //Custom tabs, chrome - implementation "androidx.browser:browser:1.6.0" + implementation "androidx.browser:browser:1.7.0" // Navigation component implementation "androidx.navigation:navigation-fragment-ktx:$navigation_ktx_version" @@ -262,7 +265,7 @@ dependencies { api 'com.journeyapps:zxing-android-embedded:4.3.0' // WorkManager Kotlin - def work_version = "2.8.1" + def work_version = "2.9.0" implementation "androidx.work:work-runtime-ktx:$work_version" // WorkManager RxJava2 support implementation "androidx.work:work-rxjava2:$work_version" @@ -309,7 +312,7 @@ dependencies { implementation project(':components:chartview') // Integration with activities - implementation 'androidx.activity:activity-compose:1.8.0' + implementation 'androidx.activity:activity-compose:1.8.2' // Compose Material Design implementation "androidx.compose.material:material:$compose_version" // Animations @@ -317,7 +320,7 @@ dependencies { // Tooling support (Previews, etc.) implementation "androidx.compose.ui:ui-tooling:$compose_version" // Integration with ViewModels - implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.6.2' + implementation 'androidx.lifecycle:lifecycle-viewmodel-compose:2.7.0' implementation "androidx.compose.runtime:runtime-livedata:$compose_version" diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 6141c2f6424..75cc10e49fb 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -16,7 +16,6 @@