学习机 新
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

38 行
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. }