@@ -60,7 +60,7 @@ garden_requirements = xcamera
6060# (str) Icon of the application
6161#icon.filename = %(source.dir)s/data/icon.png
6262
63- # (str) Supported orientation (one of landscape, portrait or all)
63+ # (str) Supported orientation (one of landscape, sensorLandscape, portrait or all)
6464orientation = portrait
6565
6666# (list) List of service to declare
@@ -106,7 +106,7 @@ android.minapi = 21
106106android.sdk = 20
107107
108108# (str) Android NDK version to use
109- android.ndk = 17c
109+ android.ndk = 19b
110110
111111# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi.
112112android.ndk_api = 21
@@ -164,8 +164,8 @@ android.accept_sdk_license = True
164164# bootstrap)
165165#android.gradle_dependencies =
166166
167- # (str) python-for-android branch to use, defaults to master
168- p4a.branch = master
167+ # (list) Java classes to add as activities to the manifest.
168+ #android.add_activites = com.example.ExampleActivity
169169
170170# (str) OUYA Console category. Should be one of GAME or APP
171171# If you leave this blank, OUYA support will not be enabled
@@ -177,9 +177,13 @@ p4a.branch = master
177177# (str) XML file to include as an intent filters in <activity> tag
178178#android.manifest.intent_filters =
179179
180- # (list) Android additionnal libraries to copy into libs/armeabi
180+ # (str) launchMode to set for the main activity
181+ #android.manifest.launch_mode = standard
182+
183+ # (list) Android additional libraries to copy into libs/armeabi
181184#android.add_libs_armeabi = libs/android/*.so
182185#android.add_libs_armeabi_v7a = libs/android-v7/*.so
186+ #android.add_libs_arm64_v8a = libs/android-v8/*.so
183187#android.add_libs_x86 = libs/android-x86/*.so
184188#android.add_libs_mips = libs/android-mips/*.so
185189
@@ -194,19 +198,28 @@ p4a.branch = master
194198# project.properties automatically.)
195199#android.library_references =
196200
201+ # (list) Android shared libraries which will be added to AndroidManifest.xml using <uses-library> tag
202+ #android.uses_library =
203+
197204# (str) Android logcat filters to use
198205#android.logcat_filters = *:S python:D
199206
200207# (bool) Copy library instead of making a libpymodules.so
201208#android.copy_libs = 1
202209
203- # (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86
210+ # (str) The Android arch to build for, choices: armeabi-v7a, arm64-v8a, x86, x86_64
204211android.arch = armeabi-v7a
205212
206213#
207214# Python for android (p4a) specific
208215#
209216
217+ # (str) python-for-android fork to use, defaults to upstream (kivy)
218+ #p4a.fork = kivy
219+
220+ # (str) python-for-android branch to use, defaults to master
221+ p4a.branch = develop
222+
210223# (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
211224#p4a.source_dir =
212225
@@ -219,13 +232,26 @@ android.arch = armeabi-v7a
219232# (str) Bootstrap to use for android builds
220233# p4a.bootstrap = sdl2
221234
235+ # (int) port number to specify an explicit --port= p4a argument (eg for bootstrap flask)
236+ #p4a.port =
237+
222238
223239#
224240# iOS specific
225241#
226242
227243# (str) Path to a custom kivy-ios folder
228244#ios.kivy_ios_dir = ../kivy-ios
245+ # Alternately, specify the URL and branch of a git checkout:
246+ ios.kivy_ios_url = https://github.com/kivy/kivy-ios
247+ ios.kivy_ios_branch = master
248+
249+ # Another platform dependency: ios-deploy
250+ # Uncomment to use a custom checkout
251+ #ios.ios_deploy_dir = ../ios_deploy
252+ # Or specify URL and branch
253+ ios.ios_deploy_url = https://github.com/phonegap/ios-deploy
254+ ios.ios_deploy_branch = 1.7.0
229255
230256# (str) Name of the certificate to use for signing the debug version
231257# Get a list of available identities: buildozer ios list_identities
0 commit comments