kivy minimum api version is 9, not 8 as before

This commit is contained in:
Mathieu Virbel 2015-10-04 11:52:01 +02:00
parent f2fc785895
commit ecc5698893

View file

@ -11,8 +11,8 @@ import sys
if sys.platform == 'win32':
raise NotImplementedError('Windows platform not yet working for Android')
ANDROID_API = '14'
ANDROID_MINAPI = '8'
ANDROID_API = '21'
ANDROID_MINAPI = '9'
ANDROID_SDK_VERSION = '21'
ANDROID_NDK_VERSION = '9c'
APACHE_ANT_VERSION = '1.9.4'
@ -258,7 +258,7 @@ class TargetAndroid(Target):
import re
_version = re.search('(.+?)[a-z]', self.android_ndk_version).group(1)
self.buildozer.info('Android NDK is missing, downloading')
if platform in ('win32', 'cygwin'):
# Checking of 32/64 bits at Windows from: http://stackoverflow.com/a/1405971/798575