We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a194a5b commit 7b0d180Copy full SHA for 7b0d180
pythonforandroid/bootstraps/common/build/build.py
@@ -364,7 +364,7 @@ def make_package(args):
364
with open(join(dirname(__file__), 'dist_info.json'), 'r') as dist_info:
365
dist_data = json.load(dist_info)
366
arch = dist_data["archs"][0]
367
- arch_dict = {"arm64-v8a": "8", "armeabi-v7a": "7", "x86": "6"}
+ arch_dict = {"x86_64": "9", "arm64-v8a": "8", "armeabi-v7a": "7", "x86": "6"}
368
arch_code = arch_dict[arch]
369
min_sdk = args.min_sdk_version
370
for i in args.version.split('.'):
0 commit comments