Cleanup gradle logging and build fixes

This commit is contained in:
Syer10
2022-09-22 22:31:19 -04:00
parent 7a7e92a7b4
commit 916a6a5a80
3 changed files with 30 additions and 1 deletions

View File

@@ -111,4 +111,19 @@ android {
setProguardFiles(listOf(getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro"))
}
}
packagingOptions {
resources.excludes.addAll(listOf(
"META-INF/DEPENDENCIES",
"LICENSE.txt",
"META-INF/LICENSE",
"META-INF/LICENSE.txt",
"META-INF/LICENSE.md",
"META-INF/LICENSE-notice.md",
"META-INF/README.md",
"META-INF/NOTICE",
"META-INF/*.kotlin_module",
"META-INF/*.version",
))
}
}