build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. // demo远程依赖
  4. ext.REMOTE_LIBRARY = false
  5. // 发布开关
  6. ext.PUBLISH_ENABLE = false
  7. // 混淆开关
  8. ext.MINIFY_ENABLE = true
  9. // ndk版本
  10. ext.NDK_VERSION = '21.4.7075529'
  11. // kotlin版本
  12. ext.KOTLIN_VERSION = '1.4.20'
  13. // compileSdkVersion
  14. ext.COMPILE_SDK_VERSION = 30
  15. // buildToolsVersion
  16. ext.BUILD_TOOLS_VERSION = '30.0.3'
  17. // minSdkVersion
  18. ext.MIN_SDK_VERSION = 16
  19. // targetSdkVersion
  20. ext.TARGET_SDK_VERSION = 30
  21. repositories {
  22. google()
  23. mavenCentral()
  24. jcenter()
  25. }
  26. dependencies {
  27. classpath 'com.android.tools.build:gradle:4.1.3'
  28. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$KOTLIN_VERSION"
  29. // classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.8.4'
  30. //jitpack
  31. // classpath 'com.github.dcendents:android-maven-gradle-plugin:2.1'
  32. // NOTE: Do not place your application dependencies here; they belong
  33. // in the individual module build.gradle files
  34. }
  35. }
  36. allprojects {
  37. repositories {
  38. google()
  39. mavenCentral()
  40. jcenter()
  41. maven { url 'https://jitpack.io' }
  42. // maven { url 'http://175.97.139.186:8081/repository/android-maven/' }
  43. }
  44. }
  45. task clean(type: Delete) {
  46. delete rootProject.buildDir
  47. }