From de4f392782941d066510fe289f8a5eed82f15dd9 Mon Sep 17 00:00:00 2001 From: Bob the Hamster Date: Sun, 12 May 2013 21:23:55 -0700 Subject: [PATCH] Clarify the documentation about how to use --intent-filters argument --- src/build.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/build.py b/src/build.py index 73f6925af6..79fc62e137 100755 --- a/src/build.py +++ b/src/build.py @@ -331,7 +331,7 @@ def make_package(args): ap.add_argument('--presplash', dest='presplash', help='A jpeg file to use as a screen while the application is loading.') ap.add_argument('--install-location', dest='install_location', default='auto', help='The default install location. Should be "auto", "preferExternal" or "internalOnly".') ap.add_argument('--compile-pyo', dest='compile_pyo', action='store_true', help='Compile all .py files to .pyo, and only distribute the compiled bytecode.') - ap.add_argument('--intent-filters', dest='intent_filters', help='Add intent-filters xml rules to AndroidManifest.xml') + ap.add_argument('--intent-filters', dest='intent_filters', help='Add intent-filters xml rules to the AndroidManifest.xml file. The argument is a filename containing xml. The filename should be located relative to the python-for-android directory') ap.add_argument('--blacklist', dest='blacklist', default=join(curdir, 'blacklist.txt'), help='Use a blacklist file to match unwanted file in the final APK')