Skip to content
This repository has been archived by the owner on Feb 20, 2023. It is now read-only.

Commit

Permalink
Fixes #445 - Ship Fenix x86_64 builds
Browse files Browse the repository at this point in the history
  • Loading branch information
st3fan committed May 27, 2019
1 parent 275e226 commit 686759c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,9 @@ android.applicationVariants.all { variant ->
// Our x86 builds need a higher version code to avoid installing ARM builds on an x86 device
// with ARM compatibility mode.

if (variant.flavorName.contains("x86")) {
if (variant.flavorName.contains("x86_x86")) {
versionCode = versionCode + 3
} else if (variant.flavorName.contains("x86")) {
versionCode = versionCode + 2
} else if (variant.flavorName.contains("aarch64")) {
versionCode = versionCode + 1
Expand Down

0 comments on commit 686759c

Please sign in to comment.