Skip to content

Commit

Permalink
Document service options in default.spec
Browse files Browse the repository at this point in the history
Also trivial copy-edits to other comments.
  • Loading branch information
Julian-O committed Aug 3, 2023
1 parent c7dee51 commit 079760b
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions buildozer/default.spec
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,16 @@ package.domain = org.test
# (str) Source code where the main.py live
source.dir = .

# (list) Source files to include (let empty to include all the files)
# (list) Source files to include (leave empty to include all the files)
source.include_exts = py,png,jpg,kv,atlas

# (list) List of inclusions using pattern matching
#source.include_patterns = assets/*,images/*.png

# (list) Source files to exclude (let empty to not exclude anything)
# (list) Source files to exclude (leave empty to not exclude anything)
#source.exclude_exts = spec

# (list) List of directory to exclude (let empty to not exclude anything)
# (list) List of directory to exclude (leave empty to not exclude anything)
#source.exclude_dirs = tests, bin, venv

# (list) List of exclusions using pattern matching
Expand Down Expand Up @@ -58,7 +58,12 @@ requirements = python3,kivy
# Valid options are: landscape, portrait, portrait-reverse or landscape-reverse
orientation = portrait

# (list) List of service to declare
# (list) List of services to declare
# Each service consists of a name (a valid Java class name, with the first letter capitalized)
# followed by a colon, followed by the name of the Python script (.py file) that should be
# launched. This is optionally followed by ":foreground" for foreground services or
# ":foreground:sticky" for sticky foreground services. The default is a background service.
# Bound services are not supported.
#services = NAME:ENTRYPOINT_TO_PY,NAME2:ENTRYPOINT2_TO_PY

#
Expand Down Expand Up @@ -126,7 +131,7 @@ fullscreen = 0
# (str) ANT directory (if empty, it will be automatically downloaded.)
#android.ant_path =

# (bool) If True, then skip trying to update the Android sdk
# (bool) If True, then skip trying to update the Android SDK
# This can be useful to avoid excess Internet downloads or save time
# when an update is due and you just want to test/build your package
# android.skip_update = False
Expand Down

0 comments on commit 079760b

Please sign in to comment.