minsdk change

This commit is contained in:
Feruz 2018-08-14 20:15:54 +03:00
parent 7cf31b7b80
commit dc1ee352f4

View File

@ -38,3 +38,14 @@ ext {
targetSdkVersion = 26
supportLibVersion = "26.1.0"
}
subprojects {
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 25
buildToolsVersion '25.0.0'
}
}
}
}