build.gradle 910 B

123456789101112131415161718192021222324252627282930
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdk rootProject.ext.androidConfig.compileSdk
  4. defaultConfig {
  5. minSdk rootProject.ext.androidConfig.minSdk
  6. targetSdk rootProject.ext.androidConfig.targetSdk
  7. }
  8. buildTypes {
  9. release {
  10. minifyEnabled false
  11. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  12. }
  13. }
  14. defaultConfig {
  15. vectorDrawables.useSupportLibrary = true
  16. }
  17. tasks.withType(Javadoc).all { enabled = false }
  18. }
  19. dependencies {
  20. implementation fileTree(include: ['*.jar'], dir: 'libs')
  21. testImplementation 'junit:junit:4.13.2'
  22. implementation 'androidx.core:core:1.6.0'
  23. implementation 'io.michaelrocks:libphonenumber-android:8.12.52'
  24. // implementation "androidx.cardview:cardview:1.0.0"
  25. implementation project(':OUICore')
  26. }