Files
flutter/android/build.gradle
Roland Geider 292460eb42 Update build.gradle
This is needed to accept the <queries> in AndroidManifest.xml, which is needed
to open links when targeting Android API 30 or later
2021-05-01 15:13:33 +02:00

32 lines
582 B
Groovy

buildscript {
ext.kotlin_version = '1.4.32'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:4.1.3'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
rootProject.buildDir = '../build'
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(':app')
}
task clean(type: Delete) {
delete rootProject.buildDir
}