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 04a3b17 commit c469d7aCopy full SHA for c469d7a
pythonforandroid/bdistapk.py
@@ -43,6 +43,10 @@ def finalize_options(self):
43
if option == 'permissions':
44
for perm in value:
45
sys.argv.append('--permission={}'.format(perm))
46
+ # allow 'features': ['feature', 'feature] in apk
47
+ if option == 'features':
48
+ for feat in value:
49
+ sys.argv.append('--feature={}'.format(feat))
50
elif value in (None, 'None'):
51
sys.argv.append('--{}'.format(option))
52
else:
0 commit comments