Skip to content

Commit

Permalink
Enforce SDK version on android dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
fabrik42 committed May 13, 2018
1 parent c44e4e8 commit 42d37a1
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,18 @@ buildscript {
}
}

subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
// TODO: should be the same like in android/app/build.gradle
compileSdkVersion 26
buildToolsVersion '26.0.2'
}
}
}
}

allprojects {
repositories {
mavenLocal()
Expand Down

0 comments on commit 42d37a1

Please sign in to comment.