Я не могу собрать apk своего приложения на Android Studio (3.5.3) из-за следующей ошибки:
Dex file with version '39' cannot be used with min sdk level '23'.
Но я могу отлично запустить его на эмуляторе или на моем android устройство через adb. Изменение minSdkVersion на 28 решило проблему, но я хочу ориентироваться на более старые версии (у меня есть более старые apks, успешно созданные с помощью minSdkVersion 23).
Вот мой build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
defaultConfig {
applicationId "com.axiel7.weeb"
minSdkVersion 23
targetSdkVersion 29
versionCode 1
versionName "0.2.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
compileOptions {
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.preference:preference:1.1.0'
testImplementation 'junit:junit:4.13'
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.19'
implementation 'com.google.android.material:material:1.1.0'
}