-
Notifications
You must be signed in to change notification settings - Fork 523
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Buildozer 0.35 with IndexError: list index out of range on Mac OS #737
Comments
Hi AndreMiras, Many thanks for your help and it works, but I got another error, which the log is below: Log
And it seems that android sdk commands have been changed in some ways and the "android list sdk -u -e" doesn't work for the sdk 27. So, could you please help me out? Thanks so much. Cheers. |
Have you searched in the issue tracker -> kivy/python-for-android#1070 |
Please I am getting this same error in Linux-Ubuntu. I got it using the VM machine and now this. Please it hasn't been fixed. |
Versions
Description
Hi, this is the first time that I try to use buildozer to compile a simple python project to Android App. And I already set up all required stuff for running buildozer, but got an error after applying the: buildozer android debug, and not quite sure how to solve it. Please anyone help me out. Many thanks.
buildozer.spec
Command:
Spec file:
title = Zac App
package.name = zacapp
package.domain = org.zac
source.dir = .
source.include_exts = py,png,jpg,kv,atlas
version = 0.1
requirements = kivy
orientation = portrait
osx.python_version = 3
osx.kivy_version = 1.10.1
fullscreen = 0
android.api = 27
android.minapi = 21
android.sdk = 27
android.ndk = r18b
android.ndk_path = /Users/zhangyu/Documents/Developing/android-sdk-macosx/ndk-bundle
android.sdk_path = /Users/zhangyu/Documents/Developing/android-sdk-macosx
Logs
Simple Project Code
import kivy as k
k.require('1.10.1')
from kivy.app import App as ap
from kivy.uix.button import Label as la
class ZacKivy(ap):
def build(self):
return la(text="hi zac it's kivy!!!!!!!!!!!!!!!!");
# custom layout, the name should be the same with this class name and lowercase is ok
# return la()
if name == 'main':
zacapp = ZacKivy()
zacapp.run()
The text was updated successfully, but these errors were encountered: