build.gradle 1003 B

12345678910111213141516171819202122232425262728293031
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion rootProject.ext.android.compileSdkVersion
  4. buildToolsVersion rootProject.ext.android.buildToolsVersion
  5. defaultConfig {
  6. minSdkVersion rootProject.ext.android.minSdkVersion
  7. targetSdkVersion rootProject.ext.android.targetSdkVersion
  8. versionCode rootProject.ext.android.versionCode
  9. versionName rootProject.ext.android.versionName
  10. }
  11. useLibrary 'org.apache.http.legacy'
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. }
  19. dependencies {
  20. //project
  21. compile project(':apputils')
  22. compile project(path: ':imageload')
  23. compile 'com.android.support.constraint:constraint-layout:1.0.2'
  24. compile project(':facesdk')
  25. compile project(path: ':appbooking')
  26. compile 'com.android.support:support-v4:26.+'
  27. compile project(path: ':scancardlibrary')
  28. }