添加类库项目模板libdebugtemp。

This commit is contained in:
2026-05-01 16:07:05 +08:00
parent d027c8affc
commit 68ddb22e83
19 changed files with 124 additions and 6 deletions

25
libdebugtemp/build.gradle Normal file
View File

@@ -0,0 +1,25 @@
apply plugin: 'com.android.library'
apply plugin: 'maven-publish'
apply from: '../.winboll/winboll_lib_build.gradle'
apply from: '../.winboll/winboll_lint_build.gradle'
android {
// 适配MIUI12
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
minSdkVersion 21
targetSdkVersion 30
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
api fileTree(dir: 'libs', include: ['*.jar'])
}