Skip to content

Commit

Permalink
Merge commit 'a73e510405e511b5a44fed62a9fd1a313447fa4f'
Browse files Browse the repository at this point in the history
Manually bring in PR 32 from original repo
APSL#32
  • Loading branch information
James Edward Butler committed Oct 2, 2018
2 parents f9f2299 + a73e510 commit 210995a
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
def safeExtGet(prop, fallback) {
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
}

apply plugin: 'com.android.library'

android {
compileSdkVersion 23
buildToolsVersion "23.0.1"
compileSdkVersion safeExtGet('compileSdkVersion', 26)
buildToolsVersion safeExtGet('buildToolsVersion', '26.0.3')

defaultConfig {
minSdkVersion 16
targetSdkVersion 22
minSdkVersion safeExtGet('minSdkVersion', 16)
targetSdkVersion safeExtGet('targetSdkVersion', 26)
versionCode 1
versionName "1.0"
ndk {
Expand Down

0 comments on commit 210995a

Please sign in to comment.