We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
After #402 raised raw APK size (not download size). I noticed that we currently don't have minify enabled.
buildTypes { getByName("release") { isMinifyEnabled = false proguardFiles( getDefaultProguardFile("proguard-android-optimize.txt"), "proguard-rules.pro" ) } }
When enabling it, some crashes happen. Fix those and enable minify.
One of the crashes is related to OssLicenseView. Its a third party library maintained by me, so I will need to fix it: https://github.com/leonlatsch/OssLicenseView
The text was updated successfully, but these errors were encountered:
No branches or pull requests
After #402 raised raw APK size (not download size). I noticed that we currently don't have minify enabled.
When enabling it, some crashes happen. Fix those and enable minify.
The text was updated successfully, but these errors were encountered: