电子屏项目
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

32 строки
881 B

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = '1.3.71'
  4. ext.anko_version='0.10.8'
  5. repositories {
  6. google()
  7. jcenter()
  8. maven { url 'https://jitpack.io' }
  9. maven { url 'https://dl.bintray.com/umsdk/release' }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:3.6.3'
  13. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  14. // NOTE: Do not place your application dependencies here; they belong
  15. // in the individual module build.gradle files
  16. }
  17. }
  18. allprojects {
  19. repositories {
  20. google()
  21. jcenter()
  22. maven { url 'https://jitpack.io' }
  23. maven { url 'https://dl.bintray.com/umsdk/release' }
  24. }
  25. }
  26. task clean(type: Delete) {
  27. delete rootProject.buildDir
  28. }