Skip to content

Commit ede34a0

Browse files
committed
change intent_filters to intent-filters for consistency
add documentation for intent-filters in usage.rst
1 parent 039d995 commit ede34a0

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

docs/source/usage.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,4 +81,7 @@ Available options to `build.py`::
8181
Use a blacklist file to match unwanted file in the
8282
final APK
8383

84+
--intent-filters FILE
85+
Inject the content of FILE into the activity
86+
definition in the AndroidManifest.xml
8487

src/build.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -320,7 +320,7 @@ def make_package(args):
320320
ap.add_argument('--presplash', dest='presplash', help='A jpeg file to use as a screen while the application is loading.')
321321
ap.add_argument('--install-location', dest='install_location', default='auto', help='The default install location. Should be "auto", "preferExternal" or "internalOnly".')
322322
ap.add_argument('--compile-pyo', dest='compile_pyo', action='store_true', help='Compile all .py files to .pyo, and only distribute the compiled bytecode.')
323-
ap.add_argument('--intent_filters', dest='intent_filters', help='Add intent-filters xml rules to AndroidManifest.xml')
323+
ap.add_argument('--intent-filters', dest='intent_filters', help='Add intent-filters xml rules to AndroidManifest.xml')
324324
ap.add_argument('--blacklist', dest='blacklist',
325325
default=join(curdir, 'blacklist.txt'),
326326
help='Use a blacklist file to match unwanted file in the final APK')

0 commit comments

Comments
 (0)