cloudform

Untitled

Mar 10th, 2014
773
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.14 KB | None | 0 0
  1. [app]
  2.  
  3. # (str) Title of your application
  4. title = Pong-ex
  5.  
  6. # (str) Package name
  7. package.name = Pong-ex
  8.  
  9. # (str) Package domain (needed for android/ios packaging)
  10. package.domain = org.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,atlas
  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 = 1.0.0
  33.  
  34. # (list) Application requirements
  35. requirements = kivy
  36.  
  37. # (str) Presplash of the application
  38. #presplash.filename = %(source.dir)s/data/presplash.png
  39.  
  40. # (str) Icon of the application
  41. #icon.filename = %(source.dir)s/data/icon.png
  42.  
  43. # (str) Supported orientation (one of landscape, portrait or all)
  44. orientation = landscape
  45.  
  46. # (bool) Indicate if the application should be fullscreen or not
  47. fullscreen = 1
  48.  
  49.  
  50. #
  51. # Android specific
  52. #
  53.  
  54. # (list) Permissions
  55. #android.permissions = INTERNET
  56.  
  57. # (int) Android API to use
  58. #android.api = 14
  59.  
  60. # (int) Minimum API required (8 = Android 2.2 devices)
  61. #android.minapi = 8
  62.  
  63. # (int) Android SDK version to use
  64. #android.sdk = 21
  65.  
  66. # (str) Android NDK version to use
  67. #android.ndk = 9c
  68.  
  69. # (bool) Use --private data storage (True) or --dir public storage (False)
  70. #android.private_storage = True
  71.  
  72. # (str) Android NDK directory (if empty, it will be automatically downloaded.)
  73. #android.ndk_path =
  74.  
  75. # (str) Android SDK directory (if empty, it will be automatically downloaded.)
  76. #android.sdk_path =
  77.  
  78. # (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
  79. #android.p4a_dir =
  80.  
  81. # (str) Android entry point, default is ok for Kivy-based app
  82. android.entrypoint = org.renpy.android.PythonActivity
  83.  
  84. # (list) List of Java .jar files to add to the libs so that pyjnius can access
  85. # their classes. Don't add jars that you do not need, since extra jars can slow
  86. # down the build process. Allows wildcards matching, for example:
  87. # OUYA-ODK/libs/*.jar
  88. #android.add_jars = foo.jar,bar.jar,path/to/more/*.jar
  89.  
  90. # (list) List of Java files to add to the android project (can be java or a
  91. # directory containing the files)
  92. #android.add_src =
  93.  
  94. # (str) python-for-android branch to use, if not master, useful to try
  95. # not yet merged features.
  96. #android.branch = master
  97.  
  98. # (str) OUYA Console category. Should be one of GAME or APP
  99. # If you leave this blank, OUYA support will not be enabled
  100. #android.ouya.category = GAME
  101.  
  102. # (str) Filename of OUYA Console icon. It must be a 732x412 png image.
  103. #android.ouya.icon.filename = %(source.dir)s/data/ouya_icon.png
  104.  
  105. # (str) XML file to include as an intent filters in <activity> tag
  106. #android.manifest.intent_filters =
  107.  
  108. # (list) Android additionnal libraries to copy into libs/armeabi
  109. #android.add_libs_armeabi = libs/android/*.so
  110.  
  111. # (bool) Indicate whether the screen should stay on
  112. # Don't forget to add the WAKE_LOCK permission if you set this to True
  113. #android.wakelock = False
  114.  
  115. # (list) Android application meta-data to set (key=value format)
  116. #android.meta_data =
  117.  
  118. # (list) Android library project to add (will be added in the
  119. # project.properties automatically.)
  120. #android.library_references =
  121.  
  122. #
  123. # iOS specific
  124. #
  125.  
  126. # (str) Name of the certificate to use for signing the debug version
  127. # Get a list of available identities: buildozer ios list_identities
  128. #ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"
  129.  
  130. # (str) Name of the certificate to use for signing the release version
  131. #ios.codesign.release = %(ios.codesign.debug)s
  132.  
  133.  
  134. [buildozer]
  135.  
  136. # (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
  137. log_level = 1
  138.  
  139.  
  140. # -----------------------------------------------------------------------------
  141. # List as sections
  142. #
  143. # You can define all the "list" as [section:key].
  144. # Each line will be considered as a option to the list.
  145. # Let's take [app] / source.exclude_patterns.
  146. # Instead of doing:
  147. #
  148. # [app]
  149. # source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
  150. #
  151. # This can be translated into:
  152. #
  153. # [app:source.exclude_patterns]
  154. # license
  155. # data/audio/*.wav
  156. # data/images/original/*
  157. #
  158.  
  159.  
  160. # -----------------------------------------------------------------------------
  161. # Profiles
  162. #
  163. # You can extend section / key with a profile
  164. # For example, you want to deploy a demo version of your application without
  165. # HD content. You could first change the title to add "(demo)" in the name
  166. # and extend the excluded directories to remove the HD content.
  167. #
  168. # [app@demo]
  169. # title = My Application (demo)
  170. #
  171. # [app:source.exclude_patterns@demo]
  172. # images/hd/*
  173. #
  174. # Then, invoke the command line with the "demo" profile:
  175. #
  176. # buildozer --profile demo android debug
  177. `
Advertisement
Add Comment
Please, Sign In to add comment