build.gradle 1013 B

12345678910111213141516171819202122232425262728293031323334353637
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 32
  4. defaultConfig {
  5. minSdkVersion 21
  6. targetSdkVersion 32
  7. versionCode 1
  8. versionName "1.0"
  9. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. implementation 'androidx.appcompat:appcompat:1.3.0-alpha02'//1.1.0
  21. implementation 'com.google.android.material:material:1.1.0'
  22. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  23. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  24. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  25. implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
  26. implementation 'com.alibaba:fastjson:1.1.55.android'
  27. }