mirror of
https://github.com/apache/cordova-android.git
synced 2025-03-04 00:13:20 +08:00
Merge pull request #426 from infil00p/api_level_bump
CB-13724: Bump Target SDK to API 27
This commit is contained in:
commit
6cc4896690
@ -29,7 +29,7 @@ buildscript {
|
|||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
classpath 'com.android.tools.build:gradle:3.0.0'
|
classpath 'com.android.tools.build:gradle:3.0.1'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -42,10 +42,10 @@ allprojects {
|
|||||||
}
|
}
|
||||||
//This replaces project.properties w.r.t. build settings
|
//This replaces project.properties w.r.t. build settings
|
||||||
project.ext {
|
project.ext {
|
||||||
defaultBuildToolsVersion="25.0.2" //String
|
defaultBuildToolsVersion="27.0.1" //String
|
||||||
defaultMinSdkVersion=19 //Integer - Minimum requirement is Android 4.4
|
defaultMinSdkVersion=19 //Integer - Minimum requirement is Android 4.4
|
||||||
defaultTargetSdkVersion=26 //Integer - We ALWAYS target the latest by default
|
defaultTargetSdkVersion=27 //Integer - We ALWAYS target the latest by default
|
||||||
defaultCompileSdkVersion=26 //Integer - We ALWAYS compile with the latest by default
|
defaultCompileSdkVersion=27 //Integer - We ALWAYS compile with the latest by default
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,7 +10,7 @@
|
|||||||
# Indicates whether an apk should be generated for each density.
|
# Indicates whether an apk should be generated for each density.
|
||||||
split.density=false
|
split.density=false
|
||||||
# Project target.
|
# Project target.
|
||||||
target=android-26
|
target=android-27
|
||||||
apk-configurations=
|
apk-configurations=
|
||||||
renderscript.opt.level=O0
|
renderscript.opt.level=O0
|
||||||
android.library=true
|
android.library=true
|
||||||
|
@ -19,12 +19,12 @@
|
|||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 26
|
compileSdkVersion 27
|
||||||
buildToolsVersion "26.0.2"
|
buildToolsVersion "27.0.1"
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "org.apache.cordova.unittests"
|
applicationId "org.apache.cordova.unittests"
|
||||||
minSdkVersion 19
|
minSdkVersion 19
|
||||||
targetSdkVersion 26
|
targetSdkVersion 27
|
||||||
versionCode 1
|
versionCode 1
|
||||||
versionName "1.0"
|
versionName "1.0"
|
||||||
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
||||||
|
Loading…
Reference in New Issue
Block a user