基础库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 vuotta sitten
4 vuotta sitten
123456789101112131415161718192021222324252627282930
  1. buildscript {
  2. repositories {
  3. google()
  4. jcenter()
  5. }
  6. dependencies {
  7. classpath 'com.android.tools.build:gradle:3.5.0'
  8. classpath 'com.mob.sdk:MobSDK:+'
  9. }
  10. }
  11. allprojects {
  12. repositories {
  13. google()
  14. jcenter()
  15. }
  16. }
  17. rootProject.buildDir = '../build'
  18. subprojects {
  19. project.buildDir = "${rootProject.buildDir}/${project.name}"
  20. }
  21. subprojects {
  22. project.evaluationDependsOn(':app')
  23. }
  24. task clean(type: Delete) {
  25. delete rootProject.buildDir
  26. }