Edited buildozer.spec and moved it out of src dir
This commit is contained in:
parent
f0b4e4ded4
commit
15e012a29f
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -11,6 +11,7 @@ src/**/.dll
|
||||||
src/**/*.o
|
src/**/*.o
|
||||||
src/**/*.so
|
src/**/*.so
|
||||||
src/**/a.out
|
src/**/a.out
|
||||||
|
bin
|
||||||
build/lib.*
|
build/lib.*
|
||||||
build/temp.*
|
build/temp.*
|
||||||
dist
|
dist
|
||||||
|
@ -19,3 +20,4 @@ docs/_*/*
|
||||||
docs/autodoc/
|
docs/autodoc/
|
||||||
build/sphinx/
|
build/sphinx/
|
||||||
pyan/
|
pyan/
|
||||||
|
.buildozer
|
||||||
|
|
|
@ -10,10 +10,10 @@ package.name = PyBitmessage
|
||||||
package.domain = org.test
|
package.domain = org.test
|
||||||
|
|
||||||
# (str) Source code where the main.py live
|
# (str) Source code where the main.py live
|
||||||
source.dir = .
|
source.dir = src
|
||||||
|
|
||||||
# (list) Source files to include (let empty to include all the files)
|
# (list) Source files to include (let empty to include all the files)
|
||||||
source.include_exts = py,png,jpg,kv,atlas
|
source.include_exts = py,png,jpg,kv,atlas,ttf
|
||||||
|
|
||||||
# (list) List of inclusions using pattern matching
|
# (list) List of inclusions using pattern matching
|
||||||
#source.include_patterns = assets/*,images/*.png
|
#source.include_patterns = assets/*,images/*.png
|
||||||
|
@ -22,21 +22,18 @@ source.include_exts = py,png,jpg,kv,atlas
|
||||||
#source.exclude_exts = spec
|
#source.exclude_exts = spec
|
||||||
|
|
||||||
# (list) List of directory to exclude (let empty to not exclude anything)
|
# (list) List of directory to exclude (let empty to not exclude anything)
|
||||||
#source.exclude_dirs = tests, bin
|
source.exclude_dirs = tests,bitmessagecurses,bitmessageqt,translations
|
||||||
|
|
||||||
# (list) List of exclusions using pattern matching
|
# (list) List of exclusions using pattern matching
|
||||||
#source.exclude_patterns = license,images/*/*.jpg
|
source.exclude_patterns = pybitmessage,build*,namecoin.py,message_data_reader.py,bitmessagecli.py,network/http*,plugins/*_*.py
|
||||||
|
|
||||||
# (str) Application versioning (method 1)
|
|
||||||
version = 0.1
|
|
||||||
|
|
||||||
# (str) Application versioning (method 2)
|
# (str) Application versioning (method 2)
|
||||||
# version.regex = __version__ = ['"](.*)['"]
|
version.regex = softwareVersion = ['"](.*)['"]
|
||||||
# version.filename = %(source.dir)s/main.py
|
version.filename = %(source.dir)s/version.py
|
||||||
|
|
||||||
# (list) Application requirements
|
# (list) Application requirements
|
||||||
# comma seperated e.g. requirements = sqlite3,kivy
|
# comma seperated e.g. requirements = sqlite3,kivy
|
||||||
requirements = python2, sqlite3, kivy, openssl
|
requirements = python2,sqlite3,kivy,openssl
|
||||||
|
|
||||||
# (str) Custom source folders for requirements
|
# (str) Custom source folders for requirements
|
||||||
# Sets custom source for any requirements with recipes
|
# Sets custom source for any requirements with recipes
|
||||||
|
@ -50,7 +47,7 @@ requirements = python2, sqlite3, kivy, openssl
|
||||||
#presplash.filename = %(source.dir)s/data/presplash.png
|
#presplash.filename = %(source.dir)s/data/presplash.png
|
||||||
|
|
||||||
# (str) Icon of the application
|
# (str) Icon of the application
|
||||||
#icon.filename = %(source.dir)s/data/icon.png
|
icon.filename = desktop/icon24.png
|
||||||
|
|
||||||
# (str) Supported orientation (one of landscape, portrait or all)
|
# (str) Supported orientation (one of landscape, portrait or all)
|
||||||
orientation = portrait
|
orientation = portrait
|
||||||
|
@ -77,7 +74,7 @@ osx.kivy_version = 1.9.1
|
||||||
#
|
#
|
||||||
|
|
||||||
# (bool) Indicate if the application should be fullscreen or not
|
# (bool) Indicate if the application should be fullscreen or not
|
||||||
fullscreen = 0
|
fullscreen = 1
|
||||||
|
|
||||||
# (string) Presplash background color (for new android toolchain)
|
# (string) Presplash background color (for new android toolchain)
|
||||||
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
|
# Supported formats are: #RRGGBB #AARRGGBB or one of the following names:
|
||||||
|
@ -124,9 +121,6 @@ android.permissions = INTERNET
|
||||||
# (list) Pattern to whitelist for the whole project
|
# (list) Pattern to whitelist for the whole project
|
||||||
#android.whitelist =
|
#android.whitelist =
|
||||||
|
|
||||||
android.whitelist = /usr/lib/komodo-edit/python/lib/python2.7/lib-dynload/_sqlite3.so
|
|
||||||
|
|
||||||
|
|
||||||
# (str) Path to a custom whitelist file
|
# (str) Path to a custom whitelist file
|
||||||
#android.whitelist_src =
|
#android.whitelist_src =
|
||||||
|
|
||||||
|
@ -150,7 +144,7 @@ android.whitelist = /usr/lib/komodo-edit/python/lib/python2.7/lib-dynload/_sqlit
|
||||||
# (list) Gradle dependencies to add (currently works only with sdl2_gradle
|
# (list) Gradle dependencies to add (currently works only with sdl2_gradle
|
||||||
# bootstrap)
|
# bootstrap)
|
||||||
#android.gradle_dependencies =
|
#android.gradle_dependencies =
|
||||||
, /home/cis/Downloads/libssl1.0.2_1.0.2l-2+deb9u2_amd64
|
|
||||||
# (str) python-for-android branch to use, defaults to stable
|
# (str) python-for-android branch to use, defaults to stable
|
||||||
#p4a.branch = stable
|
#p4a.branch = stable
|
||||||
|
|
||||||
|
@ -182,7 +176,7 @@ android.whitelist = /usr/lib/komodo-edit/python/lib/python2.7/lib-dynload/_sqlit
|
||||||
#android.library_references =
|
#android.library_references =
|
||||||
|
|
||||||
# (str) Android logcat filters to use
|
# (str) Android logcat filters to use
|
||||||
#android.logcat_filters = *:S python:D
|
android.logcat_filters = *:S python:D
|
||||||
|
|
||||||
# (bool) Copy library instead of making a libpymodules.so
|
# (bool) Copy library instead of making a libpymodules.so
|
||||||
#android.copy_libs = 1
|
#android.copy_libs = 1
|
Reference in New Issue
Block a user