You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ap.add_argument('--presplash', dest='presplash', help='A jpeg file to use as a screen while the application is loading.')
309
321
ap.add_argument('--install-location', dest='install_location', default='auto', help='The default install location. Should be "auto", "preferExternal" or "internalOnly".')
310
322
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')
311
324
ap.add_argument('--blacklist', dest='blacklist',
312
325
default=join(curdir, 'blacklist.txt'),
313
326
help='Use a blacklist file to match unwanted file in the final APK')
@@ -319,10 +332,10 @@ def make_package(args):
319
332
ap.error('One of --dir, --private, or --launcher must be supplied.')
0 commit comments