androidApp/build.gradle
lionel cba7fc2555 Java 11 networkSecurityConfig
- upgrading gradle to Java 11
 - fix CleartextTraffic with networkSecurityConfig
 - fix port empty
2021-10-08 20:09:52 +02:00

29 lines
694 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:7.0.2'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
gradle.projectsEvaluated {
tasks.withType(JavaCompile) {
options.compilerArgs << "-Xlint:unchecked" << "-Xlint:deprecation"
}
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}