We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
def _install_android_sdk(self): ... elif platform in ('linux2', 'linux3'): archive = 'android-sdk_r{0}-linux.tgz' unpacked = 'android-sdk-linux' else: raise SystemError('Unsupported platform: {0}'.format(platform))
def _install_android_sdk(self): ... # Modified line elif platform.startswith('linux'): archive = 'android-sdk_r{0}-linux.tgz' unpacked = 'android-sdk-linux' else: raise SystemError('Unsupported platform: {0}'.format(platform))
And then it finally works. Thanks!
The text was updated successfully, but these errors were encountered:
373f8e2
No branches or pull requests
Line 218 in buildozer/targets/android.py
def _install_android_sdk(self):
...
elif platform in ('linux2', 'linux3'):
archive = 'android-sdk_r{0}-linux.tgz'
unpacked = 'android-sdk-linux'
else:
raise SystemError('Unsupported platform: {0}'.format(platform))
instead it should be:
def _install_android_sdk(self):
...
# Modified line
elif platform.startswith('linux'):
archive = 'android-sdk_r{0}-linux.tgz'
unpacked = 'android-sdk-linux'
else:
raise SystemError('Unsupported platform: {0}'.format(platform))
And then it finally works. Thanks!
The text was updated successfully, but these errors were encountered: