build.gradle 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 32
  4. defaultConfig {
  5. minSdkVersion 21
  6. targetSdkVersion 22
  7. versionCode 4
  8. versionName "1.4"
  9. ndk {
  10. abiFilters "armeabi-v7a"
  11. }
  12. }
  13. buildTypes {
  14. release {
  15. minifyEnabled false
  16. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  17. }
  18. }
  19. }
  20. repositories {
  21. flatDir {
  22. dirs 'libs'
  23. }
  24. }
  25. dependencies {
  26. implementation fileTree(dir: 'libs', include: ['*.jar'])
  27. implementation 'androidx.appcompat:appcompat:1.2.0'
  28. implementation 'androidx.constraintlayout:constraintlayout:2.0.0'
  29. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  30. implementation 'com.google.android.material:material:1.0.0'
  31. implementation 'androidx.navigation:navigation-fragment:2.1.0'
  32. implementation 'androidx.navigation:navigation-ui:2.1.0'
  33. implementation 'androidx.lifecycle:lifecycle-extensions:2.1.0'
  34. testImplementation 'junit:junit:4.+'
  35. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  36. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  37. implementation(name: 'communication-release', ext: 'aar')
  38. implementation(name: 'MultiReaderLib-release', ext: 'aar')
  39. implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
  40. }