switch config key to use underscore
This commit is contained in:
parent
9bb9dd590c
commit
d77d9714ff
2 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ fullscreen = 0
|
||||||
#android.ndk = 9c
|
#android.ndk = 9c
|
||||||
|
|
||||||
# (int) Android NDK API to use (optional). This is the minimum API your app will support.
|
# (int) Android NDK API to use (optional). This is the minimum API your app will support.
|
||||||
#android.ndk.api = 19
|
#android.ndk_api = 19
|
||||||
|
|
||||||
# (bool) Use --private data storage (True) or --dir public storage (False)
|
# (bool) Use --private data storage (True) or --dir public storage (False)
|
||||||
#android.private_storage = True
|
#android.private_storage = True
|
||||||
|
|
|
@ -29,7 +29,7 @@ class TargetAndroidNew(TargetAndroid):
|
||||||
color = 'always' if USE_COLOR else 'never'
|
color = 'always' if USE_COLOR else 'never'
|
||||||
self.extra_p4a_args = ' --color={} --storage-dir="{}"'.format(
|
self.extra_p4a_args = ' --color={} --storage-dir="{}"'.format(
|
||||||
color, self._build_dir)
|
color, self._build_dir)
|
||||||
ndk_api = self.buildozer.config.getdefault('app', 'android.ndk.api', None)
|
ndk_api = self.buildozer.config.getdefault('app', 'android.ndk_api', None)
|
||||||
if ndk_api is not None:
|
if ndk_api is not None:
|
||||||
self.extra_p4a_args += ' --ndk-api={}'.format(ndk_api)
|
self.extra_p4a_args += ' --ndk-api={}'.format(ndk_api)
|
||||||
hook = self.buildozer.config.getdefault("app", "p4a.hook", None)
|
hook = self.buildozer.config.getdefault("app", "p4a.hook", None)
|
||||||
|
|
Loading…
Reference in a new issue