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 { ...@@ -11,12 +11,12 @@ buildscript {
apply plugin: 'com.android.library' apply plugin: 'com.android.library'
android { android {
compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 25 compileSdkVersion project.hasProperty('compileSdkVersion') ? project.compileSdkVersion : 26
buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : '25.0.3' buildToolsVersion project.hasProperty('buildToolsVersion') ? project.buildToolsVersion : '26.0.3'
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 22 targetSdkVersion project.hasProperty('targetSdkVersion') ? project.targetSdkVersion : 26
versionCode 1 versionCode 1
versionName "1.0" 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