且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用适用于 Android 的 Python (Buildozer) 为 Android 应用程序签名

更新时间:2023-09-15 23:25:22

Ben Rousch 在 https://groups.google.com/forum/#!topic/kivy-users/5-G7wkbHb_k

他说:

一般来说,步骤是:

 1 生成密钥库(一次)2 创建发布APK三签APK4 Zip-align APK

Ben 还在上面的链接中发布了工作流的示例终端命令.

希望有帮助

i'm using Buildozer to compile Python scripts to Android executable files (.apk).

But I've got a problem : I can't run them on Android (I have installed it in a virtual machine). I have found that I need to sign the app to be able to run it. So, how do I sign my application ? I'm using GNU/Linux.

Thanks for you help.

This was answered comprehensively by Ben Rousch at https://groups.google.com/forum/#!topic/kivy-users/5-G7wkbHb_k

He said:

In general, the steps are:

   1 Generate Keystore (once)
   2 Create Release APK
   3 Sign APK
   4 Zip-align APK

Ben also posted example terminal commands for the workflow at the above link.

Hope that helps