Update Gradle to 8.9.3, Sdk to 35, Java to 17 and Fix

This commit is contained in:
lionel
2025-07-09 13:40:50 +02:00
parent d519208439
commit 56b24f0784
20 changed files with 107 additions and 86 deletions

View File

@ -1,12 +1,11 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
compileSdk 35
defaultConfig {
applicationId "com.localtransfer"
minSdkVersion 24
targetSdkVersion 30
minSdkVersion 27
targetSdkVersion 35
versionCode 1
versionName "2.0"
@ -20,22 +19,20 @@ android {
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
sourceCompatibility JavaVersion.VERSION_17
targetCompatibility JavaVersion.VERSION_17
}
namespace 'com.localtransfer'
}
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation 'androidx.appcompat:appcompat:1.2.0'
implementation 'com.google.android.material:material:1.2.1'
implementation 'androidx.constraintlayout:constraintlayout:2.0.4'
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-extensions:2.2.0'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.preference:preference:1.2.1'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
testImplementation 'junit:junit:4.13.1'
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
implementation 'lib.kashif:folderpicker:2.4'
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.2.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.6.1'
}