Skip to content
Advertisement

How do I create an apk file from kivy with github

Is there a way to convert a kivy file to apk on github. I have been looking around online and there seems to be possible but I am not sure how to do it. If someone could help me I would be very thankfull because I cannot find a way to convert my kivy file to apk. I have tried bulldozer on a vm and rpi but keep getting errors

Advertisement

Answer

main.yml

JavaScript

Step 1: make a repo in GitHub.

Step 2: Add all your project files to the repo

(Make sure your main.py and buildozer.spec are in the root dir i.e.: out side of any-folders)

Step 3 : Go to Github action and there will be an option to setup yourself, when you click on it paste the code above and save changes.

(When you edit the main.yml file and save ,it will start a build, in the .yml file you can see it has been given to build when there is a push into repo or merge into the repo.)

Step 4: You have made the CI pipeline , now you will have to wait for it to build. You can see the logs in Realtime in the pipelines.

For an working example refer to this repo: Github repo

User contributions licensed under: CC BY-SA
9 People found this is helpful
Advertisement