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

@ -158,15 +158,15 @@ warn_on_root = 1
# 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/*
# #
@ -178,12 +178,12 @@ warn_on_root = 1
# 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