android - Difference between build.gradle (Project) and build.gradle (Module) - Stack Overflow
Sun Oct 08 2023 16:22:39 GMT+0000 (Coordinated Universal Time)
Saved by
@super
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:2.0.0-alpha3'
//Maven plugin
classpath 'com.github.dcendents:android-maven-gradle-plugin:1.3'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
content_copyCOPY
https://stackoverflow.com/questions/28295933/difference-between-build-gradle-project-and-build-gradle-module
Comments