Skip to content

Commit da98194

Browse files
committed
Added default ndk-api settings to the testapps
1 parent f7038f8 commit da98194

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

testapps/setup_testapp_python2.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,10 @@
22
from distutils.core import setup
33
from setuptools import find_packages
44

5-
options = {'apk': {
5+
options = {'apk': {'debug': None,
66
'requirements': 'sdl2,pyjnius,kivy,python2',
77
'android-api': 19,
8+
'ndk-api': 19,
89
'ndk-dir': '/home/asandy/android/crystax-ndk-10.3.2',
910
'dist-name': 'bdisttest_python2',
1011
'ndk-version': '10.3.2',

testapps/setup_testapp_python3.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,9 @@
22
from distutils.core import setup
33
from setuptools import find_packages
44

5-
options = {'apk': {'debug': None,
6-
'requirements': 'sdl2,pyjnius,kivy,python3',
7-
'android-api': 19,
8-
'ndk-dir': '/home/asandy/android/crystax-ndk-10.3.2',
5+
options = {'apk': {'requirements': 'sdl2,pyjnius,kivy,python3',
6+
'android-api': 26,
7+
'ndk-api': 19,
98
'dist-name': 'bdisttest_python3_googlendk',
109
'ndk-version': '10.3.2',
1110
'arch': 'armeabi-v7a',

testapps/setup_testapp_python3crystax.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
options = {'apk': {'debug': None,
66
'requirements': 'sdl2,pyjnius,kivy,python3crystax',
77
'android-api': 19,
8+
'ndk-api': 19,
89
'ndk-dir': '/home/asandy/android/crystax-ndk-10.3.2',
910
'dist-name': 'bdisttest_python3',
1011
'ndk-version': '10.3.2',

0 commit comments

Comments
 (0)