[FIX] Android targeting wrong SDK version (#2375)
This commit is contained in:
parent
71a809a116
commit
cc0d143534
|
@ -56,10 +56,10 @@ subprojects { subproject ->
|
|||
afterEvaluate {
|
||||
if ((subproject.plugins.hasPlugin('android') || subproject.plugins.hasPlugin('android-library'))) {
|
||||
android {
|
||||
compileSdkVersion 28
|
||||
buildToolsVersion "28.0.3"
|
||||
compileSdkVersion 29
|
||||
buildToolsVersion "29.0.2"
|
||||
defaultConfig {
|
||||
targetSdkVersion 28
|
||||
targetSdkVersion 29
|
||||
}
|
||||
variantFilter { variant ->
|
||||
def names = variant.flavors*.name
|
||||
|
|
Loading…
Reference in New Issue