Advertisement
Guest User

Untitled

a guest
Aug 3rd, 2015
186
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.63 KB | None | 0 0
  1. splits {
  2. abi {
  3. enable true
  4. reset()
  5. include 'x86', 'mips', 'armeabi-v7a', 'armeabi'
  6. universalApk false
  7. }
  8. }
  9.  
  10.  
  11. android.applicationVariants.all { variant ->
  12. // assign different version code for each output
  13. variant.outputs.each { output ->
  14. output.versionCodeOverride =
  15. versionCodes.get(output.getFilter(OutputFile.ABI), 0) * 1000000 + android.defaultConfig.versionCode
  16. }
  17. }
  18.  
  19. build/intermediates/manifests/full/debug/AndroidManifest.xml not found or not a file; it should point to your project's AndroidManifest.xml
  20.  
  21. armeabi/ armeabi-v7a/ mips/ x86/
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement