1
0

android build: update p4a/buildozer to latest upstream

Rebased our branches on latest p4a develop HEAD and buildozer master HEAD.

Re `android.allow_backup = False` in buildozer.spec, now that this setting
has been exposed to buildozer.spec (see https://github.com/kivy/buildozer/pull/1206),
we could finally drop a commit from our branch that did the same:
7a7d415d90

Re commenting out `android.arch` in buildozer.spec, we are setting this
via the ENV VAR in make_apk.
This commit is contained in:
SomberNight
2021-04-21 17:53:17 +02:00
parent 8ce94248d4
commit bb381a263a
2 changed files with 7 additions and 5 deletions

View File

@@ -140,7 +140,7 @@ android.manifest.launch_mode = singleTask
# (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
# note: can be overwritten by APP_ANDROID_ARCH env var
android.arch = armeabi-v7a
#android.arch = armeabi-v7a
# (list) Android application meta-data to set (key=value format)
#android.meta_data =
@@ -151,6 +151,8 @@ android.arch = armeabi-v7a
android.whitelist = lib-dynload/_csv.so
# (bool) enables Android auto backup feature (Android API >=23)
android.allow_backup = False
#
# Python for android (p4a) specific