target sdk 36
This commit is contained in:
parent
31809449eb
commit
bddb556bb1
19 changed files with 97 additions and 37 deletions
|
|
@ -9,12 +9,12 @@ def useDebugSigningForReleaseBuild = project.findProperty('useDebugSigningForRel
|
|||
|
||||
android {
|
||||
namespace 'org.fnives.android.qrcodetransfer'
|
||||
compileSdk 35
|
||||
compileSdk 36
|
||||
|
||||
defaultConfig {
|
||||
applicationId applicationIdArgument ?: "org.fnives.android.qrcodetransfer"
|
||||
minSdk 24
|
||||
targetSdk 35
|
||||
targetSdk 36
|
||||
versionCode applicationVersionCodeArgument ?: 1
|
||||
versionName "1.2.0"
|
||||
|
||||
|
|
@ -72,34 +72,34 @@ android {
|
|||
|
||||
dependencies {
|
||||
|
||||
def compose_ui_version = '1.5.4'
|
||||
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'
|
||||
def compose_ui_version = '1.9.4'
|
||||
implementation 'androidx.core:core-ktx:1.17.0'
|
||||
implementation 'androidx.lifecycle:lifecycle-runtime-ktx:2.9.4'
|
||||
implementation 'androidx.activity:activity-compose:1.11.0'
|
||||
implementation "androidx.compose.ui:ui:$compose_ui_version"
|
||||
implementation "androidx.compose.ui:ui-tooling-preview:$compose_ui_version"
|
||||
implementation 'androidx.compose.material:material:1.8.0'
|
||||
implementation 'androidx.compose.material:material:1.9.4'
|
||||
implementation "androidx.compose.material:material-icons-extended:1.7.8"
|
||||
|
||||
// qr code
|
||||
implementation "com.google.zxing:core:3.5.2"
|
||||
implementation "com.google.zxing:core:3.5.3"
|
||||
|
||||
// permission
|
||||
implementation 'com.google.accompanist:accompanist-permissions:0.32.0'
|
||||
implementation 'com.google.accompanist:accompanist-permissions:0.37.3'
|
||||
|
||||
// camerax
|
||||
def camerax_version = "1.4.2"
|
||||
def camerax_version = "1.5.1"
|
||||
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.1.4"
|
||||
implementation "androidx.datastore:datastore-preferences:1.1.7"
|
||||
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
|
||||
androidTestImplementation 'androidx.test.ext:junit:1.3.0'
|
||||
androidTestImplementation 'androidx.test.espresso:espresso-core:3.7.0'
|
||||
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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue