32 lines
821 B
Groovy
32 lines
821 B
Groovy
|
|
apply plugin: 'com.android.library'
|
|||
|
|
group='com.github.RmondJone'
|
|||
|
|
android {
|
|||
|
|
namespace 'com.rmondjone.locktableview'
|
|||
|
|
compileSdk 35
|
|||
|
|
|
|||
|
|
defaultConfig {
|
|||
|
|
minSdk 24
|
|||
|
|
targetSdk 35
|
|||
|
|
versionCode 12
|
|||
|
|
versionName "1.1.2"
|
|||
|
|
|
|||
|
|
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
buildTypes {
|
|||
|
|
release {
|
|||
|
|
minifyEnabled false
|
|||
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
dependencies {
|
|||
|
|
implementation fileTree(dir: 'libs', include: ['*.jar'])
|
|||
|
|
// 1. 核心:AppCompat 依赖(必须添加,主题基础)
|
|||
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|||
|
|
implementation 'com.android.support:design:25.0.0'
|
|||
|
|
|
|||
|
|
implementation project(':moduleUtil')
|
|||
|
|
}
|