Skip to content

Commit 7b0d180

Browse files
committed
add x86_64 for android version code
1 parent a194a5b commit 7b0d180

File tree

1 file changed

+1
-1
lines changed
  • pythonforandroid/bootstraps/common/build

1 file changed

+1
-1
lines changed

pythonforandroid/bootstraps/common/build/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,7 @@ def make_package(args):
364364
with open(join(dirname(__file__), 'dist_info.json'), 'r') as dist_info:
365365
dist_data = json.load(dist_info)
366366
arch = dist_data["archs"][0]
367-
arch_dict = {"arm64-v8a": "8", "armeabi-v7a": "7", "x86": "6"}
367+
arch_dict = {"x86_64": "9", "arm64-v8a": "8", "armeabi-v7a": "7", "x86": "6"}
368368
arch_code = arch_dict[arch]
369369
min_sdk = args.min_sdk_version
370370
for i in args.version.split('.'):

0 commit comments

Comments
 (0)