upgrade to API Level 27, fix nullability problems with new support library

This commit is contained in:
Conny Duck 2017-11-09 14:35:52 +01:00
commit dec7da9655
3 changed files with 11 additions and 13 deletions

View file

@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
android {
compileSdkVersion 26
compileSdkVersion 27
buildToolsVersion '27.0.0'
defaultConfig {
applicationId "com.keylesspalace.tusky"
minSdkVersion 15
targetSdkVersion 26
targetSdkVersion 27
versionCode 28
versionName "1.3.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
@ -35,7 +35,7 @@ android {
}
}
ext.supportLibraryVersion = '26.1.0'
ext.supportLibraryVersion = '27.0.0'
dependencies {
compile('com.mikepenz:materialdrawer:5.9.5@aar') {