32 lines
637 B
Groovy
32 lines
637 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
namespace 'me.jessyan.autosize'
|
|
compileSdkVersion 29
|
|
|
|
defaultConfig {
|
|
minSdkVersion 19
|
|
targetSdkVersion 29
|
|
consumerProguardFiles 'proguard-rules.pro'
|
|
}
|
|
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
warning 'InvalidPackage'
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation 'androidx.annotation:annotation:1.0.0'
|
|
implementation 'androidx.fragment:fragment:1.1.0'
|
|
|
|
}
|
|
|