Advertisement
Guest User

Untitled

a guest
Jan 21st, 2020
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Groovy 0.56 KB | None | 0 0
  1. // publish for 64-bit problem workaround
  2.     flavorDimensions 'arch'
  3.     productFlavors {
  4.         arm32 {
  5.             dimension 'arch'
  6.             ndk {
  7.                 abiFilters 'armeabi-v7a'
  8.             }
  9.             // separate version codes
  10.             versionCode Integer.valueOf(localProperties['flutter.versionCode']) * 2
  11.         }
  12.         arm64 {
  13.             dimension 'arch'
  14.             ndk {
  15.                 abiFilters 'arm64-v8a'
  16.             }
  17.             versionCode Integer.valueOf(localProperties['flutter.versionCode']) * 2 + 1
  18.         }
  19.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement