You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Build.py will just use the default from the argparser instead of overwriting it with the shell variable value or using that value as the default in the argparser.
Quick fixes in either AndroidManifest.xml.tmpl or build.py but I don't want to screw up buildozer's expected behavior or I'd patch it myself.
In AndroidManifest.xml.tmpl: <uses-sdk android:minSdkVersion="{{ args.min_sdk_version }}" androi...
In build.py:
# Get target android APIandroid_api=int(os.environ.get('ANDROIDAPI', '8'))
args.min_sdk_version isn't being overwritten by the shell variable and the shell variable isn't used as the default value in the arg parser. It would seem that shell variables are less specific than args, but really why isn't the API version hard-coded into each build.py considering that the SDK is set during distribute.sh?
The text was updated successfully, but these errors were encountered:
knappador
changed the title
Env variables for ANDROIDAPI ignored. Possibly others.
Env variables for ANDROIDAPI ignored
May 20, 2014
Build.py will just use the default from the argparser instead of overwriting it with the shell variable value or using that value as the default in the argparser.
Quick fixes in either AndroidManifest.xml.tmpl or build.py but I don't want to screw up buildozer's expected behavior or I'd patch it myself.
In AndroidManifest.xml.tmpl:
<uses-sdk android:minSdkVersion="{{ args.min_sdk_version }}" androi...
In build.py:
args.min_sdk_version
isn't being overwritten by the shell variable and the shell variable isn't used as the default value in the arg parser. It would seem that shell variables are less specific than args, but really why isn't the API version hard-coded into each build.py considering that the SDK is set during distribute.sh?The text was updated successfully, but these errors were encountered: