target sdk version 24

This commit is contained in:
Adrian Ulrich 2016-09-04 16:13:29 +02:00
parent 826546bf72
commit 8beb95c79a
3 changed files with 5 additions and 5 deletions

View File

@ -26,7 +26,7 @@ THE SOFTWARE.
android:versionName="1.0.43" android:versionName="1.0.43"
android:versionCode="10430" android:versionCode="10430"
android:installLocation="auto"> android:installLocation="auto">
<uses-sdk android:minSdkVersion="15" android:targetSdkVersion="23" /> <uses-sdk android:minSdkVersion="15" android:targetSdkVersion="24" />
<uses-permission android:name="android.permission.WAKE_LOCK" /> <uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/> <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>

View File

@ -47,7 +47,7 @@ Building
To build you will need: To build you will need:
* A Java compiler compatible with Java 1.7 * A Java compiler compatible with Java 1.7
* The Android SDK with platform 23 (Marshmallow) installed * The Android SDK with platform 24 (Nougat) installed
Building from command-line #1 Building from command-line #1
-------------------------- --------------------------

View File

@ -17,13 +17,13 @@ allprojects {
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 23 compileSdkVersion 24
buildToolsVersion "23.0.3" buildToolsVersion "24.0.2"
defaultConfig { defaultConfig {
applicationId "ch.blinkenlights.android.vanilla" applicationId "ch.blinkenlights.android.vanilla"
minSdkVersion 15 minSdkVersion 15
targetSdkVersion 23 targetSdkVersion 24
} }
sourceSets { sourceSets {