32 lines
936 B
Groovy
Executable File
32 lines
936 B
Groovy
Executable File
apply plugin: 'com.android.library'
|
|
|
|
android {
|
|
compileSdkVersion rootProject.ext.android.compileSdkVersion
|
|
// buildToolsVersion rootProject.ext.android.buildToolsVersion
|
|
defaultConfig {
|
|
minSdkVersion rootProject.ext.android.minSdkVersion
|
|
targetSdkVersion rootProject.ext.android.targetSdkVersion
|
|
versionCode 1
|
|
versionName "1.0"
|
|
}
|
|
buildTypes {
|
|
release {
|
|
minifyEnabled false
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|
implementation rootProject.ext.dependencies.androidxconstraintlayout
|
|
implementation project(':skin:skin-support')
|
|
implementation project(':skin:skin-support-appcompat')
|
|
}
|
|
|
|
ext {
|
|
moduleName = 'skin-support-constraint-layout'
|
|
descContent = 'ConstraintLayout控件换肤支持包'
|
|
}
|
|
|