Guest User

Untitled

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