build.gradle 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion "30.0.0"
  5. defaultConfig {
  6. minSdkVersion 21
  7. targetSdkVersion 30
  8. versionCode 1
  9. versionName "1.0"
  10. ndk {
  11. abiFilters "armeabi-v7a"
  12. }
  13. }
  14. buildTypes {
  15. release {
  16. minifyEnabled false
  17. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  18. }
  19. }
  20. sourceSets {
  21. main {
  22. jniLibs.srcDirs = ['libs']
  23. }
  24. }
  25. }
  26. dependencies {
  27. implementation fileTree(include: ['*.jar'], dir: 'libs')
  28. implementation 'androidx.appcompat:appcompat:1.1.0'
  29. implementation 'com.google.android.material:material:1.1.0'
  30. implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
  31. api files('libs\\telpo_sdk_210726.jar')
  32. testImplementation 'junit:junit:4.+'
  33. androidTestImplementation 'androidx.test.ext:junit:1.1.1'
  34. androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
  35. implementation 'com.jakewharton:butterknife:7.0.1'
  36. implementation 'androidx.recyclerview:recyclerview:1.0.0'
  37. implementation 'com.google.zxing:core:3.3.0'
  38. implementation 'com.github.bumptech.glide:glide:4.9.0'
  39. implementation 'cat.ereza:customactivityoncrash:2.1.0'
  40. implementation 'io.reactivex.rxjava2:rxandroid:2.1.0'
  41. implementation 'io.reactivex.rxjava2:rxjava:2.2.2'
  42. implementation 'com.google.zxing:core:3.3.3'
  43. implementation 'com.caverock:androidsvg:1.4+'
  44. }