1
0
mirror of https://github.com/nerzhul/ownCloud-SMS-App.git synced 2025-06-07 07:56:14 +00:00

Update sdk to v27 & build tools to 27.0.2

This commit is contained in:
Loic Blot 2017-12-06 19:04:40 +01:00
parent 7ede7bb350
commit 011b78ba30
No known key found for this signature in database
GPG Key ID: EFAA458E8C153987
2 changed files with 10 additions and 10 deletions

View File

@ -16,8 +16,8 @@ android:
- tools
- platform-tools
- extra
- build-tools-26.0.2
- android-26
- build-tools-27.0.2
- android-27
licenses:
- 'android-sdk-license-.+'
- 'google-gdk-license-.+'

View File

@ -11,8 +11,8 @@ buildscript {
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
buildToolsVersion "26.0.2"
compileSdkVersion 27
buildToolsVersion "27.0.2"
lintOptions {
abortOnError false
@ -23,8 +23,8 @@ android {
versionCode 63
versionName "1.3.3"
minSdkVersion 16
targetSdkVersion 26
maxSdkVersion 26
targetSdkVersion 27
maxSdkVersion 27
ndk {
// Specifies the ABI configurations of your native
// libraries Gradle should build and package with your APK.
@ -63,10 +63,10 @@ repositories {
}
dependencies {
compile 'com.android.support:support-v13:26.1.0'
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'
compile 'com.android.support:support-v13:27.0.2'
compile 'com.android.support:appcompat-v7:27.0.2'
compile 'com.android.support:design:27.0.2'
compile 'in.srain.cube:ultra-ptr:1.0.11'
compile 'com.github.dmytrodanylyk.android-process-button:library:1.0.4'
compile 'com.android.support:support-v4:26.1.0'
compile 'com.android.support:support-v4:27.0.2'
}