From a43bb98a9750d2e37b5829d4c22d6a9f7348a8dd Mon Sep 17 00:00:00 2001 From: Ben Rousch Date: Fri, 30 Aug 2013 19:33:18 -0400 Subject: [PATCH] Fixed hard-coded Android API 14 --- buildozer/targets/android.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildozer/targets/android.py b/buildozer/targets/android.py index 3c37466df..05cf88e9c 100644 --- a/buildozer/targets/android.py +++ b/buildozer/targets/android.py @@ -318,7 +318,7 @@ def install_platform(self): self.buildozer.environ.update({ 'ANDROIDSDK': self.android_sdk_dir, 'ANDROIDNDK': self.android_ndk_dir, - 'ANDROIDAPI': ANDROID_API, + 'ANDROIDAPI': self.android_api, 'ANDROIDNDKVER': self.android_ndk_version}) def get_available_packages(self):