1234567891011121314151617181920212223242526272829303132 |
- apply plugin: 'com.android.library'
- android {
- namespace 'com.christophesmet.android.views.maskableframelayout'
- compileSdkVersion 33
- defaultConfig {
- minSdkVersion 14
- targetSdkVersion 33
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
- }
- }
- }
- dependencies {
- // AndroidX Annotations 1.6.0 (latest version as of this edit)
- // is causing duplicated classes conflicts
- implementation 'androidx.annotation:annotation:1.5.0'
- implementation 'androidx.appcompat:appcompat-resources:1.6.1'
- }
|