We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 33a058d commit af4dca7Copy full SHA for af4dca7
pythonforandroid/bootstraps/common/build/build.py
@@ -616,6 +616,10 @@ def parse_args(args=None):
616
default=default_min_api, type=int,
617
help=('Minimum Android SDK version that the app supports. '
618
'Defaults to {}.'.format(default_min_api)))
619
+ ap.add_argument('--allow-minsdk-ndkapi-mismatch', default=False,
620
+ action='store_true',
621
+ help=('Allow the --minsdk argument to be different from '
622
+ 'the discovered ndk_api in the dist'))
623
ap.add_argument('--intent-filters', dest='intent_filters',
624
help=('Add intent-filters xml rules to the '
625
'AndroidManifest.xml file. The argument is a '
0 commit comments