Advertisement
Xistic

libpython2.7.so error buildozer spec

Feb 16th, 2016
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.50 KB | None | 0 0
  1. [app]
  2.  
  3. # (str) Title of your application
  4. title = EdWord
  5.  
  6. # (str) Package name
  7. package.name = edword
  8.  
  9. # (str) Package domain (needed for android/ios packaging)
  10. package.domain = edword.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,db,lst,ttf,tgz,dawg,crt
  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.2.0
  33.  
  34. # (list) Application requirements
  35. #requirements = apsw, twisted, kivy
  36. requirements = pyopenssl, cryptography, pyasn1, apsw, requests, ndg_httpsclient, kivy
  37. # (str) Custom source folders for requirements
  38. # Sets custom source for any requirements with recipes
  39. # requirements.source.kivy = ../../kivy
  40.  
  41. # (list) Garden requirements
  42. #garden_requirements =
  43.  
  44. # (str) Presplash of the application
  45. #presplash.filename = %(source.dir)s/data/presplash.png
  46.  
  47. # (str) Icon of the application
  48. #icon.filename = %(source.dir)s/data/icon.png
  49.  
  50. # (str) Supported orientation (one of landscape, portrait or all)
  51. orientation = portrait
  52.  
  53. # (bool) Indicate if the application should be fullscreen or not
  54. fullscreen = True
  55.  
  56. # OSX Specific
  57. #
  58.  
  59. #
  60. # author = © Copyright Info
  61.  
  62. #
  63. # Android specific
  64. #
  65.  
  66. # (bool) Indicate if the application should be fullscreen or not
  67. fullscreen = 1
  68. # (list) Permissions
  69. #android.permissions = INTERNET
  70. android.permissions = WAKE_LOCK, INTERNET
  71.  
  72. # (int) Android API to use
  73. android.api = 12
  74.  
  75. # (int) Minimum API required (8 = Android 2.2 devices)
  76. android.minapi = 8
  77.  
  78. # (int) Android SDK version to use
  79. #android.sdk = 21
  80.  
  81. # (str) Android NDK version to use
  82. #android.ndk = 9c
  83.  
  84. # (bool) Use --private data storage (True) or --dir public storage (False)
  85. #android.private_storage = True
  86.  
  87. # (str) Android NDK directory (if empty, it will be automatically downloaded.)
  88. #android.ndk_path = /home/kyle/edword/android-ndk-r9c
  89.  
  90. # (str) Android SDK directory (if empty, it will be automatically downloaded.)
  91. #android.sdk_path = /home/kyle/edword/android-sdk-21
  92.  
  93. # (str) python-for-android git clone directory (if empty, it will be automatically cloned from github)
  94. android.p4a_dir = /home/kyle/edword/python-for-android
  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_x86 = libs/android-x86/*.so
  126. #android.add_libs_mips = libs/android-mips/*.so
  127.  
  128. # (bool) Indicate whether the screen should stay on
  129. # Don't forget to add the WAKE_LOCK permission if you set this to True
  130. android.wakelock = True
  131.  
  132. # (list) Android application meta-data to set (key=value format)
  133. #android.meta_data =
  134.  
  135. # (list) Android library project to add (will be added in the
  136. # project.properties automatically.)
  137. #android.library_references =
  138.  
  139. # (str) Android logcat filters to use
  140. #android.logcat_filters = *:S python:D
  141.  
  142. # (bool) Copy library instead of making a libpymodules.so
  143. android.copy_libs = 0
  144.  
  145. #
  146. # iOS specific
  147. #
  148.  
  149. # (str) Name of the certificate to use for signing the debug version
  150. # Get a list of available identities: buildozer ios list_identities
  151. #ios.codesign.debug = "iPhone Developer: <lastname> <firstname> (<hexstring>)"
  152.  
  153. # (str) Name of the certificate to use for signing the release version
  154. #ios.codesign.release = %(ios.codesign.debug)s
  155.  
  156.  
  157. [buildozer]
  158.  
  159. # (int) Log level (0 = error only, 1 = info, 2 = debug (with command output))
  160. log_level = 2
  161.  
  162. # (int) Display warning if buildozer is run as root (0 = False, 1 = True)
  163. warn_on_root = 1
  164.  
  165. # -----------------------------------------------------------------------------
  166. # List as sections
  167. #
  168. # You can define all the "list" as [section:key].
  169. # Each line will be considered as a option to the list.
  170. # Let's take [app] / source.exclude_patterns.
  171. # Instead of doing:
  172. #
  173. # [app]
  174. # source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
  175. #
  176. # This can be translated into:
  177. #
  178. # [app:source.exclude_patterns]
  179. # license
  180. # data/audio/*.wav
  181. # data/images/original/*
  182. #
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement