Skip to content
This repository has been archived by the owner on Apr 15, 2023. It is now read-only.

Commit

Permalink
Merge pull request #88 from dao-wkm/master
Browse files Browse the repository at this point in the history
Fix conflict android
  • Loading branch information
jordanbyron authored Jun 23, 2019
2 parents 950d0f7 + a0e062f commit d879146
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions android/build.gradle
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
apply plugin: 'com.android.library'

def safeExtGet(prop, fallback) {
rootProject.ext.has(prop) ? rootProject.ext.get(prop) : fallback
}
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
compileSdkVersion safeExtGet('compileSdkVersion', 25)
buildToolsVersion safeExtGet('buildToolsVersion', '25.0.2')

defaultConfig {
minSdkVersion 21
targetSdkVersion 25
minSdkVersion safeExtGet('minSdkVersion', 21)
targetSdkVersion safeExtGet('targetSdkVersion', 25)
}
}

Expand Down

0 comments on commit d879146

Please sign in to comment.