学习机 新
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.

38 lines
763B

  1. plugins {
  2. id 'com.android.library'
  3. }
  4. android {
  5. compileSdkVersion 30
  6. defaultConfig {
  7. minSdkVersion 16
  8. targetSdkVersion 30
  9. }
  10. buildTypes {
  11. release {
  12. minifyEnabled false
  13. }
  14. }
  15. compileOptions {
  16. sourceCompatibility JavaVersion.VERSION_1_8
  17. targetCompatibility JavaVersion.VERSION_1_8
  18. }
  19. }
  20. afterEvaluate{
  21. generateReleaseBuildConfig.enabled =false
  22. generateDebugBuildConfig.enabled =false
  23. }
  24. dependencies {
  25. implementation 'androidx.appcompat:appcompat:1.3.1'
  26. implementation 'com.google.android.material:material:1.3.0'
  27. implementation 'com.github.bumptech.glide:glide:4.12.0'
  28. implementation 'com.google.code.gson:gson:2.8.7'
  29. api project(':tuicore')
  30. }