removed some indentation in example info, added to actual comments instead for clarity

This commit is contained in:
Chozabu 2014-12-24 15:31:44 +00:00
parent e3252c5742
commit c2626e6c53

View file

@ -150,40 +150,40 @@ log_level = 1
warn_on_root = 1 warn_on_root = 1
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# List as sections # List as sections
# #
# You can define all the "list" as [section:key]. # You can define all the "list" as [section:key].
# Each line will be considered as a option to the list. # Each line will be considered as a option to the list.
# Let's take [app] / source.exclude_patterns. # Let's take [app] / source.exclude_patterns.
# Instead of doing: # Instead of doing:
# #
# [app] #[app]
# source.exclude_patterns = license,data/audio/*.wav,data/images/original/* #source.exclude_patterns = license,data/audio/*.wav,data/images/original/*
# #
# This can be translated into: # This can be translated into:
# #
# [app:source.exclude_patterns] #[app:source.exclude_patterns]
# license #license
# data/audio/*.wav #data/audio/*.wav
# data/images/original/* #data/images/original/*
# #
# ----------------------------------------------------------------------------- # -----------------------------------------------------------------------------
# Profiles # Profiles
# #
# You can extend section / key with a profile # You can extend section / key with a profile
# For example, you want to deploy a demo version of your application without # For example, you want to deploy a demo version of your application without
# HD content. You could first change the title to add "(demo)" in the name # HD content. You could first change the title to add "(demo)" in the name
# and extend the excluded directories to remove the HD content. # and extend the excluded directories to remove the HD content.
# #
# [app@demo] #[app@demo]
# title = My Application (demo) #title = My Application (demo)
# #
# [app:source.exclude_patterns@demo] #[app:source.exclude_patterns@demo]
# images/hd/* #images/hd/*
# #
# Then, invoke the command line with the "demo" profile: # Then, invoke the command line with the "demo" profile:
# #
# buildozer --profile demo android debug #buildozer --profile demo android debug