Commit 83f1d776 authored by Gaëtan Renaudeau's avatar Gaëtan Renaudeau Committed by GitHub

Merge pull request #190 from dkfl1995/master

Fixed compability with newest Android API 26+
parents bc5c0f00 fda7645b
......@@ -11,12 +11,12 @@ buildscript {
apply plugin: 'com.android.library'
android {
compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 25
buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : '25.0.3'
compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 26
buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : '26.0.3'
defaultConfig {
minSdkVersion 16
targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 22
targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 26
versionCode 1
versionName "1.0"
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment