Files
yusheng-android/locktableview/build.gradle
梁小江 ec58f46bf8 1:修改我的页面
2:添加爵位功能
2025-11-12 11:34:34 +08:00

32 lines
821 B
Groovy
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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')
}