0
0
mirror of https://github.com/ankidroid/Anki-Android.git synced 2024-09-20 03:52:15 +02:00

AGP: Migrate packagingOptions DSL properties to sub-blocks

AGP 7.4.1 Automated Change

Description:

Directives to affect packaging have been split into those affecting libraries (.so files) and those affecting all other resources.
This commit is contained in:
David Allison 2023-02-15 20:00:29 +00:00 committed by Mike Hardy
parent 4823e15e44
commit 1b3cd33a6f

View File

@ -206,9 +206,6 @@ android {
compileOptions {
coreLibraryDesugaringEnabled true
}
packagingOptions {
exclude 'META-INF/DEPENDENCIES'
}
ndkVersion "22.0.7026061"
}
@ -384,6 +381,12 @@ dependencies {
android {
packagingOptions {
resources {
excludes += ['META-INF/DEPENDENCIES']
}
}
namespace 'com.ichi2.anki'
testOptions {
kotlinOptions {