buildozer-action
buildozer-action copied to clipboard
I can't build an apk
I try to build it shows these error :
Build for Android The following actions uses node12 which is deprecated and will be forced to run on node16: actions/checkout@v2. For more info: https://github.blog/changelog/2023-06-13-github-actions-all-actions-will-run-on-node16-instead-of-node12-by-default/
Build for Android Failed to remove 'http.https://github.com/.extraheader' from the git config
main.yml code is :
name: Build
on: [push, pull_request]
jobs:
# Build job. Builds app for Android with Buildozer
build-android:
name: Build for Android
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build with Buildozer
uses: ArtemSBulgakov/buildozer-action@v1
id: buildozer
with:
workdir: .
buildozer_version: stable
- name: Upload artifacts
uses: actions/upload-artifact@v2
with:
name: package
path: ${{ steps.buildozer.outputs.filename }}
Please help me to fix this
Problems solved!
🎉 Exciting News! 🎉
I'm thrilled to announce that my APK build process for the SAMPLE-KIVYMD-APP repository has been successfully completed on GitHub! 🚀
It took some frustrating build failures but still I managed to succeed.
After resolving several challenges, my GitHub Actions workflow now reliably builds the APK for my KivyMD application, thanks to the latest updates and optimizations. This achievement marks a significant milestone for my project, bringing us one step closer to delivering an enhanced mobile experience.
🔧 Key Highlights:
- Automated APK Building: Our workflow now efficiently handles the APK build process without manual intervention.
- Optimized Dependencies: I have integrated all necessary dependencies, ensuring a smooth build environment.
- Seamless Deployment: The build process is fully automated, making it easier to deploy updates and improvements.
For more details, you can check out the repository here. I am looking forward to your feedback.
Stay tuned for more updates and happy coding!