Skip to content

Commit

Permalink
Se corrige aritmética de versionamiento, adecuando a versionamiento K…
Browse files Browse the repository at this point in the history
…under
  • Loading branch information
madkileras committed Oct 10, 2019
1 parent 58dda06 commit ae06ade
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions platforms/android/xwalk.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,13 @@ cdvPluginPostBuildExtras.add({
if (xwalk64bit != null) {
productFlavors {
x86_64 {
versionCode defaultConfig.versionCode + 6
versionCode defaultConfig.versionCode*10 + 6
ndk {
abiFilters "x86_64", ""
}
}
arm64 {
versionCode defaultConfig.versionCode + 9
versionCode defaultConfig.versionCode*10 + 9
ndk {
abiFilters "arm64-v8a", ""
}
Expand Down

0 comments on commit ae06ade

Please sign in to comment.