Google Play商店不接受Kivy buildozer 64位APK

时间:2019-10-10 04:56:26

标签: kivy 64-bit buildozer

Google Play商店不接受我的32位apk。因此,我按照此链接https://github.com/kivy/python-for-android/issues/1519上的说明将buildozer规范文件中的android.arch更改为arm64-v8a。 我就是这么做的。这是我执行的所有步骤:

1. Change android.arch from armeabi-v7a to arm64-v8a. Save the spec file.
2. Run sudo buildozer android release . Get an unsigned apk file.
3. Run zipalign -v -p 4 kindact-0.1-release-unsigned.apk kindact-0.1-release-unsigned-aligned.apk to get an aligned apk.
4. Copy that file along with the key file into a folder contained apksigner. 
5. Run sudo ./apksigner sign --ks my-release-key.jks --out kindact-release.apk kindact-0.1-release-unsigned-aligned.apk to get a signed apk.
6. Upload that file to the App Releases in Google Play Store.

我遇到相同的错误”,此版本不符合Google Play 64位要求。以下APK或应用捆绑包可用于64位设备,但它们只有32位本机代码: 7212。” ,就像在编辑buildozer规范文件之前一样。

在同一Google Play商店页面上,我单击了APK的下拉菜单,并且本地平台仍显示 armeabi-v7a enter image description here 我尝试按照此处Kivy and Google Play 64-bit的建议上传1 32位apk和1 64位apk,但仍然出现相同的错误。 enter image description here

我做错了什么?请帮忙。

0 个答案:

没有答案