28 lines
681 B
Groovy
28 lines
681 B
Groovy
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion target_sdk_version
|
|
|
|
defaultConfig {
|
|
targetSdkVersion target_sdk_version
|
|
minSdkVersion min_sdk_version
|
|
}
|
|
|
|
|
|
lintOptions {
|
|
abortOnError false
|
|
}
|
|
|
|
resourcePrefix "cpv_"
|
|
}
|
|
|
|
dependencies {
|
|
implementation "androidx.appcompat:appcompat:$appcompat_version"
|
|
|
|
implementation 'com.google.android:flexbox:1.1.0'
|
|
|
|
}
|
|
|
|
//apply plugin: 'com.getkeepsafe.dexcount'
|
|
//apply from: 'https://raw.githubusercontent.com/jaredrummler/android-artifact-push/master/artifactory/publication.gradle'
|
|
//apply from: 'https://raw.githubusercontent.com/jaredrummler/android-artifact-push/master/maven/gradle-mvn-push.gradle' |