build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 30
  4. buildToolsVersion "30.0.0"
  5. defaultConfig {
  6. minSdkVersion 22
  7. targetSdkVersion 30
  8. versionCode 1
  9. versionName "1.0"
  10. testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
  11. }
  12. buildTypes {
  13. release {
  14. minifyEnabled false
  15. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  16. }
  17. }
  18. compileOptions {
  19. sourceCompatibility JavaVersion.VERSION_1_8
  20. targetCompatibility JavaVersion.VERSION_1_8
  21. }
  22. }
  23. dependencies {
  24. implementation fileTree(dir: 'libs', include: ['*.jar'])
  25. //noinspection GradleCompatible
  26. // implementation 'androidx.appcompat:appcompat:1.1.0'
  27. implementation 'com.android.support:appcompat-v7:28.0.0'
  28. testImplementation 'junit:junit:4.12'
  29. //noinspection GradleCompatible
  30. androidTestImplementation 'com.android.support.test:runner:1.0.2'
  31. androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
  32. //noinspection GradleCompatible
  33. implementation 'com.android.support:recyclerview-v7:28.0.0'
  34. implementation project(path: ':datalibrary')
  35. implementation project(path: ':facelibrary')
  36. }