build.gradle: add more packaging excludes

This commit is contained in:
Andreas Schildbach 2022-09-09 21:22:27 +02:00
parent 6e34a09531
commit b7341bf810

View file

@ -91,8 +91,10 @@ android {
packagingOptions { packagingOptions {
exclude 'META-INF/*.version' exclude 'META-INF/*.version'
exclude 'META-INF/proguard/**' exclude 'META-INF/proguard/**'
exclude 'META-INF/services/**'
exclude 'META-INF/*.kotlin_module' exclude 'META-INF/*.kotlin_module'
exclude 'META-INF/com.android.tools/proguard/coroutines.pro' exclude 'META-INF/**/coroutines.pro'
exclude 'DebugProbesKt.bin'
exclude 'kotlin/**' exclude 'kotlin/**'
} }
} }