build.gradle 489 B

1234567891011121314151617181920212223242526
  1. apply plugin: 'com.android.library'
  2. //apply plugin: 'img-optimizer'
  3. android {
  4. compileSdkVersion 30
  5. buildToolsVersion "30.0.1"
  6. defaultConfig {
  7. minSdkVersion 21
  8. targetSdkVersion 30
  9. vectorDrawables.useSupportLibrary = true
  10. }
  11. lintOptions {
  12. checkReleaseBuilds false
  13. abortOnError false
  14. }
  15. }
  16. dependencies {
  17. implementation fileTree(dir: 'libs', include: ['*.jar'])
  18. implementation 'androidx.appcompat:appcompat:1.2.0'
  19. }