Skip to content

Commit 4b996da

Browse files
committed
[Android] Fixed template build gradle error on x86_64
See #23897
1 parent 000119d commit 4b996da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

template/android/app/build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ android {
113113
reset()
114114
enable enableSeparateBuildPerCPUArchitecture
115115
universalApk false // If true, also generate a universal APK
116-
include "armeabi-v7a", "x86", "arm64-v8a", "x86-64"
116+
include "armeabi-v7a", "x86", "arm64-v8a", "x86_64"
117117
}
118118
}
119119
buildTypes {
@@ -127,7 +127,7 @@ android {
127127
variant.outputs.each { output ->
128128
// For each separate APK per architecture, set a unique version code as described here:
129129
// http://tools.android.com/tech-docs/new-build-system/user-guide/apk-splits
130-
def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86-64": 4]
130+
def versionCodes = ["armeabi-v7a":1, "x86":2, "arm64-v8a": 3, "x86_64": 4]
131131
def abi = output.getFilter(OutputFile.ABI)
132132
if (abi != null) { // null for the universal-debug, universal-release variants
133133
output.versionCodeOverride =

0 commit comments

Comments
 (0)