From bc96417091d74bc5d48a6e2c2dea0140f4dbde4e Mon Sep 17 00:00:00 2001 From: Aaron Culliney Date: Wed, 4 Nov 2015 20:03:28 -0800 Subject: [PATCH] DO NOT use API 23 yet ... we need to fix text relocations first! - This prevents crashing on Marshmallow (for the time being) --- Android/app/app.iml | 12 ++++++------ Android/app/build.gradle | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Android/app/app.iml b/Android/app/app.iml index 693d732d..efa5b85e 100644 --- a/Android/app/app.iml +++ b/Android/app/app.iml @@ -71,8 +71,8 @@ - - + + @@ -88,10 +88,10 @@ - + - - - + + + \ No newline at end of file diff --git a/Android/app/build.gradle b/Android/app/build.gradle index 7ae863fe..b57e03d0 100644 --- a/Android/app/build.gradle +++ b/Android/app/build.gradle @@ -1,7 +1,7 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 23 + compileSdkVersion 21 buildToolsVersion "21.1.2" signingConfigs { release { @@ -26,7 +26,7 @@ android { defaultConfig { applicationId "org.deadc0de.apple2ix.basic" minSdkVersion 10 - targetSdkVersion 23 + targetSdkVersion 21 versionCode 5 versionName "1.0.2" ndk { @@ -37,5 +37,5 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:23.1.0' + compile 'com.android.support:appcompat-v7:21.0.0' }