build: remove junk files in apk

Remove build junk from the APK.

Removes another ~100kb or so.
This commit is contained in:
Alexander Capehart 2023-03-04 22:11:55 -07:00
parent 4f7ed359ae
commit 6226b0a830
No known key found for this signature in database
GPG key ID: 37DBE3621FE9AD47

View file

@ -57,6 +57,14 @@ android {
}
}
packagingOptions {
exclude "DebugProbesKt.bin"
exclude "kotlin-tooling-metadata.json"
exclude "**/kotlin/**"
exclude "**/okhttp3/**"
exclude "META-INF/*.version"
}
buildFeatures {
viewBinding true
}