Guest User

Untitled

a guest
Jan 22nd, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. // Optimize APK size - remove excess files in the manifest and APK
  2. packagingOptions {
  3. //ignore strip tool for obsolete arch in 3rd-party libs
  4. doNotStrip "*/armeabi/*.so"
  5. doNotStrip "*/mips/*.so"
  6. doNotStrip "*/mips64/*.so"
  7.  
  8. exclude "/META-INF/*.kotlin_module"
  9. exclude "**/kotlin/**"
  10. exclude "**/*.txt"
  11. exclude "**/*.xml"
  12. exclude "**/*.properties"
  13. //files with commented code
  14. exclude "**/*.java"
  15. exclude "**/*.kt"
  16. }
Add Comment
Please, Sign In to add comment