2025-11-12 16:40:26 +08:00
|
|
|
|
apply plugin: 'com.android.library'
|
|
|
|
|
|
group='com.github.RmondJone'
|
|
|
|
|
|
android {
|
|
|
|
|
|
namespace 'com.rmondjone.locktableview'
|
|
|
|
|
|
compileSdk 35
|
|
|
|
|
|
|
|
|
|
|
|
defaultConfig {
|
|
|
|
|
|
minSdk 24
|
|
|
|
|
|
targetSdk 35
|
2025-11-14 17:38:30 +08:00
|
|
|
|
versionCode 1
|
|
|
|
|
|
versionName "1.0.0"
|
2025-11-12 16:40:26 +08:00
|
|
|
|
|
|
|
|
|
|
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(':BaseModule')
|
|
|
|
|
|
}
|