Advertisement
psionman

Untitled

Apr 25th, 2018
128
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.77 KB | None | 0 0
  1. [app]
  2.  
  3. # (str) Title of your application
  4. title = Test app
  5.  
  6. # (str) Package name
  7. package.name = testApp
  8.  
  9. # (str) Package domain (needed for android/ios packaging)
  10. package.domain = Test
  11.  
  12. # (str) Source code where the main.py live
  13. source.dir = .
  14.  
  15. # (list) Source files to include (let empty to include all the files)
  16. source.include_exts = py, png, jpg, kv
  17.  
  18. # (list) Source files to exclude (let empty to not exclude anything)
  19. #source.exclude_exts = spec
  20.  
  21. # (list) List of directory to exclude (let empty to not exclude anything)
  22. #source.exclude_dirs = tests, bin
  23.  
  24. # (list) List of exclusions using pattern matching
  25. #source.exclude_patterns = license,images/*/*.jpg
  26.  
  27. # (str) Application versioning (method 1)
  28. #version.regex = __version__ = ['"](.*)['"]
  29. #version.filename = %(source.dir)s/main.py
  30.  
  31. # (str) Application versioning (method 2)
  32. version = 0.0.0
  33.  
  34. # (list) Application requirements
  35. # comma seperated e.g. requirements = sqlite3,kivy
  36. requirements = kivy, pil
  37.  
  38. # (str) Custom source folders for requirements
  39. # Sets custom source for any requirements with recipes
  40. # requirements.source.kivy = ../../kivy
  41.  
  42. # (list) Garden requirements
  43. #garden_requirements =
  44.  
  45. # (str) Presplash of the application
  46. # icon.filename = ''
  47. # presplash.filename = ''
  48.  
  49. # (str) Icon of the application
  50. # icon.filename = ''
  51.  
  52. # (str) Supported orientation (one of landscape, portrait or all)
  53. orientation = landscape
  54.  
  55. # (bool) Indicate if the application should be fullscreen or not
  56. fullscreen = 1
  57.  
  58.  
  59. #
  60. # Android specific
  61. #
  62.  
  63. # (list) Permissions
  64. #android.permissions = INTERNET
  65.  
  66. # (int) Android API to use
  67. #android.api = 19
  68.  
  69. # (int) Minimum API required
  70. #android.minapi = 9
  71.  
  72. # (int) Android SDK version to use
  73. #android.sdk = 20
  74.  
  75. # (str) Android NDK version to use
  76. android.ndk = 10.3.2
  77.  
  78. # (bool) Use --private data storage (True) or --dir public storage (False)
  79. #android.private_storage = True
  80.  
  81. # (str) Android NDK directory (if empty, it will be automatically downloaded.)
  82. android.ndk_path = /home/jeff/.buildozer/crystax-ndk/crystax-ndk-10.3.2
  83.  
  84. # (str) Android SDK directory (if empty, it will be automatically downloaded.)
  85. android.sdk_path =
  86.  
  87. # (str) ANT directory (if empty, it will be automatically downloaded.)
  88. #android.ant_path =
  89.  
  90. # (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
  91. #android.p4a_dir =
  92.  
  93. # (list) python-for-android whitelist
  94. #android.p4a_whitelist =
  95.  
  96. # (str) Android entry point, default is ok for Kivy-based app
  97. #android.entrypoint = org.renpy.android.PythonActivity
  98.  
  99. # (list) List of Java .jar files to add to the libs so that pyjnius can access
  100. # their classes. Don't add jars that you do not need, since extra jars can slow
  101. # down the build process. Allows wildcards matching, for example:
  102. # OUYA-ODK/libs/*.jar
  103. #android.add_jars = foo.jar,bar.jar,path/to/more/*.jar
  104.  
  105. # (list) List of Java files to add to the android project (can be java or a
  106. # directory containing the files)
  107. #android.add_src =
  108.  
  109. # (str) python-for-android branch to use, if not master, useful to try
  110. # not yet merged features.
  111. #android.branch = master
  112.  
  113. # (str) OUYA Console category. Should be one of GAME or APP
  114. # If you leave this blank, OUYA support will not be enabled
  115. #android.ouya.category = GAME
  116.  
  117. # (str) Filename of OUYA Console icon. It must be a 732x412 png image.
  118. #android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png
  119.  
  120. # (str) XML file to include as an intent filters in <activity> tag
  121. #android.manifest.intent_filters =
  122.  
  123. # (list) Android additionnal libraries to copy into libs/armeabi
  124. #android.add_libs_armeabi = libs/android/*.so
  125. #android.add_libs_armeabi_v7a = libs/android-v7/*.so
  126. #android.add_libs_x86 = libs/android-x86/*.so
  127. #android.add_libs_mips = libs/android-mips/*.so
  128.  
  129. # (bool) Indicate whether the screen should stay on
  130. # Don't forget to add the WAKE_LOCK permission if you set this to True
  131. #android.wakelock = False
  132.  
  133. # (list) Android application meta-data to set (key=value format)
  134. #android.meta_data =
  135.  
  136. # (list) Android library project to add (will be added in the
  137. # project.properties automatically.)
  138. #android.library_references =
  139.  
  140. #
  141. # iOS specific
  142. #
  143.  
  144. # (str) Name of the certificate to use for signing the debug version
  145. # Get a list of available identities: buildozer ios list_identities
  146. #ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"
  147.  
  148. # (str) Name of the certificate to use for signing the release version
  149. #ios.codesign.release = %(ios.codesign.debug)s
  150.  
  151.  
  152. [buildozer]
  153.  
  154. # (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
  155. log_level = 2
  156.  
  157. # (int) Display warning if buildozer is run as root (0 = False, 1 = True)
  158. warn_on_root = 1
  159.  
  160.  
  161. # -----------------------------------------------------------------------------
  162. # List as sections
  163. #
  164. # You can define all the "list" as [section:key].
  165. # Each line will be considered as a option to the list.
  166. # Let's take [app] / source.exclude_patterns.
  167. # Instead of doing:
  168. #
  169. #[app]
  170. #source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
  171. #
  172. # This can be translated into:
  173. #
  174. #[app:source.exclude_patterns]
  175. #license
  176. #data/audio/*.wav
  177. #data/images/original/*
  178. #
  179.  
  180.  
  181. # -----------------------------------------------------------------------------
  182. # Profiles
  183. #
  184. # You can extend section / key with a profile
  185. # For example, you want to deploy a demo version of your application without
  186. # HD content. You could first change the title to add "(demo)" in the name
  187. # and extend the excluded directories to remove the HD content.
  188. #
  189. #[app@demo]
  190. #title = My Application (demo)
  191. #
  192. #[app:source.exclude_patterns@demo]
  193. #images/hd/*
  194. #
  195. # Then, invoke the command line with the "demo" profile:
  196. #
  197. #buildozer --profile demo android debug
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement