set Target SDK back to 25 (->for release)
This commit is contained in:
parent
16f9f0e3ab
commit
b7714e0a2a
2 changed files with 26 additions and 10 deletions
|
@ -1,15 +1,15 @@
|
||||||
apply plugin: 'com.android.application'
|
apply plugin: 'com.android.application'
|
||||||
|
|
||||||
android {
|
android {
|
||||||
compileSdkVersion 26
|
compileSdkVersion project.ext.compileSdkVersion
|
||||||
buildToolsVersion '26.0.0'
|
buildToolsVersion project.ext.buildToolsVersion
|
||||||
|
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
applicationId "org.y20k.trackbook"
|
applicationId project.ext.applicationId
|
||||||
minSdkVersion 22
|
minSdkVersion project.ext.minSdkVersion
|
||||||
targetSdkVersion 26
|
targetSdkVersion project.ext.targetSdkVersion
|
||||||
versionCode 11
|
versionCode project.ext.versionCode
|
||||||
versionName "1.0.4 (Astronomy Domine)"
|
versionName project.ext.versionName
|
||||||
vectorDrawables.useSupportLibrary = true
|
vectorDrawables.useSupportLibrary = true
|
||||||
}
|
}
|
||||||
buildTypes {
|
buildTypes {
|
||||||
|
@ -22,9 +22,9 @@ android {
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
compile fileTree(include: ['*.jar'], dir: 'libs')
|
compile fileTree(include: ['*.jar'], dir: 'libs')
|
||||||
compile 'com.android.support:appcompat-v7:26.0.0-beta2'
|
compile 'com.android.support:appcompat-v7:' + supportLibraryVersion
|
||||||
compile 'com.android.support:design:26.0.0-beta2'
|
compile 'com.android.support:design:' + supportLibraryVersion
|
||||||
compile 'com.android.support:cardview-v7:26.0.0-beta2'
|
compile 'com.android.support:cardview-v7:' + supportLibraryVersion
|
||||||
compile 'org.osmdroid:osmdroid-android:5.6.4'
|
compile 'org.osmdroid:osmdroid-android:5.6.4'
|
||||||
compile 'com.google.code.gson:gson:2.8.1'
|
compile 'com.google.code.gson:gson:2.8.1'
|
||||||
}
|
}
|
||||||
|
|
16
build.gradle
16
build.gradle
|
@ -19,6 +19,22 @@ allprojects {
|
||||||
url "https://maven.google.com"
|
url "https://maven.google.com"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
project.ext {
|
||||||
|
applicationId = 'org.y20k.trackbook'
|
||||||
|
versionCode = 11
|
||||||
|
versionName = '1.0.4 (Astronomy Domine)'
|
||||||
|
minSdkVersion = 22
|
||||||
|
// Android N - release
|
||||||
|
compileSdkVersion = 25
|
||||||
|
targetSdkVersion = 25
|
||||||
|
buildToolsVersion = '25.0.3 '
|
||||||
|
supportLibraryVersion = '25.4.0'
|
||||||
|
// Android O - test
|
||||||
|
// compileSdkVersion = 26
|
||||||
|
// targetSdkVersion = 26
|
||||||
|
// buildToolsVersion = '26.0.0'
|
||||||
|
// supportLibraryVersion = '26.0.0-beta2'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
task clean(type: Delete) {
|
task clean(type: Delete) {
|
||||||
|
|
Loading…
Reference in a new issue