build.gradle 664 B

1234567891011121314151617181920212223242526272829303132
  1. apply plugin: 'com.android.library'
  2. android {
  3. namespace 'com.christophesmet.android.views.maskableframelayout'
  4. compileSdkVersion 33
  5. defaultConfig {
  6. minSdkVersion 14
  7. targetSdkVersion 33
  8. }
  9. buildTypes {
  10. release {
  11. minifyEnabled false
  12. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
  13. }
  14. }
  15. }
  16. dependencies {
  17. // AndroidX Annotations 1.6.0 (latest version as of this edit)
  18. // is causing duplicated classes conflicts
  19. implementation 'androidx.annotation:annotation:1.5.0'
  20. implementation 'androidx.appcompat:appcompat-resources:1.6.1'
  21. }