Browse Source

Bumping target to API 26

master
anthony restaino 8 years ago
parent
commit
daa4633d54
  1. 8
      app/build.gradle
  2. 4
      build.gradle

8
app/build.gradle

@ -2,12 +2,12 @@ apply plugin: 'com.android.application'
apply plugin: 'com.getkeepsafe.dexcount' apply plugin: 'com.getkeepsafe.dexcount'
android { android {
compileSdkVersion 25 compileSdkVersion project.targetSdkVersion
buildToolsVersion '25.0.3' buildToolsVersion project.buildToolsVersion
defaultConfig { defaultConfig {
minSdkVersion 14 minSdkVersion project.minSdkVersion
targetSdkVersion 25 targetSdkVersion project.targetSdkVersion
versionName project.versionName versionName project.versionName
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true
} }

4
build.gradle

@ -17,8 +17,8 @@ allprojects {
ext { ext {
minSdkVersion = 14 minSdkVersion = 14
targetSdkVersion = 25 targetSdkVersion = 26
buildToolsVersion = '25.0.2' buildToolsVersion = '26.0.0'
versionName = '4.5.0' versionName = '4.5.0'
versionCode_lite = 97 versionCode_lite = 97

Loading…
Cancel
Save