From 9708d142eaa8a374b3adb4d02e378a19251d4beb Mon Sep 17 00:00:00 2001 From: Thomas-Karl Pietrowski Date: Sun, 6 Sep 2015 11:17:31 +0200 Subject: [PATCH] Toolchain: Update DEFAULT_ANDROID_API to 15 ANDROID_API = 14 is obsolete according to the Android SDK Manager. Thats why I would suggest to update the DEFAULT_ANDROID_API at least to the next supported version. --- pythonforandroid/toolchain.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pythonforandroid/toolchain.py b/pythonforandroid/toolchain.py index c77b220307..3d947b46bd 100755 --- a/pythonforandroid/toolchain.py +++ b/pythonforandroid/toolchain.py @@ -43,7 +43,7 @@ sys.path.insert(0, join(curdir, "tools", "external")) -DEFAULT_ANDROID_API = 14 +DEFAULT_ANDROID_API = 15 class LevelDifferentiatingFormatter(logging.Formatter): def format(self, record):