Update versions

This commit is contained in:
Gergely Hegedus 2025-05-01 16:41:36 +03:00
parent 88a24cd879
commit 1ffb041435
14 changed files with 256 additions and 142 deletions

View file

@ -9,14 +9,14 @@ def useDebugSigningForReleaseBuild = project.findProperty('useDebugSigningForRel
android {
namespace 'org.fnives.android.qrcodetransfer'
compileSdk 34
compileSdk 35
defaultConfig {
applicationId applicationIdArgument ?: "org.fnives.android.qrcodetransfer"
minSdk 24
targetSdk 34
targetSdk 35
versionCode applicationVersionCodeArgument ?: 1
versionName "1.1.0"
versionName "1.2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
@ -73,12 +73,12 @@ android {
dependencies {
def compose_ui_version = '1.5.4'
implementation 'androidx.core:core-ktx:1.12.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.6.2'
implementation 'androidx.activity:activity-compose:1.8.2'
implementation 'androidx.core:core-ktx:1.16.0'
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.8.7'
implementation 'androidx.activity:activity-compose:1.10.1'
implementation "androidx.compose.ui:ui:$compose_ui_version"
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
implementation 'androidx.compose.material:material:1.5.4'
implementation 'androidx.compose.material:material:1.8.0'
// qr code
implementation "com.google.zxing:core:3.5.2"
@ -87,18 +87,18 @@ dependencies {
implementation 'com.google.accompanist:accompanist-permissions:0.32.0'
// camerax
def camerax_version = "1.3.1"
def camerax_version = "1.4.2"
implementation "androidx.camera:camera-camera2:$camerax_version"
implementation "androidx.camera:camera-lifecycle:$camerax_version"
implementation "androidx.camera:camera-view:$camerax_version"
implementation "androidx.camera:camera-extensions:$camerax_version"
// preferences
implementation "androidx.datastore:datastore-preferences:1.0.0"
implementation "androidx.datastore:datastore-preferences:1.1.5"
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
androidTestImplementation "androidx.compose.ui:ui-test-junit4:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-tooling:$compose_ui_version"
debugImplementation "androidx.compose.ui:ui-test-manifest:$compose_ui_version"