build.gradle 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. ext.kotlin_version = '1.5.0'
  4. ext.hilt_version = '2.29.1-alpha'
  5. ext.roomVersion = '2.2.5'
  6. ext.archLifecycleVersion = '2.2.0'
  7. ext.coroutines = '1.3.4'
  8. ext.application_id = "com.hdl.xl"
  9. ext.application_version_code = 13
  10. ext.application_version_name = "1.1.0"
  11. ext.support_version = "29.0.2"
  12. ext.min_sdk_version = 23
  13. ext.target_sdk_version = 31
  14. ext.compile_sdk_version = 31
  15. repositories {
  16. google()
  17. jcenter()
  18. mavenCentral() // add repository
  19. flatDir {
  20. dirs 'libs'
  21. }
  22. }
  23. dependencies {
  24. classpath 'com.android.tools.build:gradle:7.1.3'
  25. classpath 'com.billy.android:cc-register:1.1.2'
  26. // NOTE: Do not place your application dependencies here; they belong
  27. // in the individual module build.gradle files
  28. classpath "com.google.dagger:hilt-android-gradle-plugin:$hilt_version"
  29. classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
  30. }
  31. }
  32. allprojects {
  33. repositories {
  34. google()
  35. jcenter()
  36. mavenCentral() // add repository
  37. maven { url "https://jitpack.io" }
  38. maven { url 'https://maven.google.com' }
  39. }
  40. }
  41. task clean(type: Delete) {
  42. delete rootProject.buildDir
  43. }