JKBaseLib/BaseLibrary/build.gradle

85 lines
2.3 KiB
Groovy
Raw Normal View History

2025-07-09 16:02:54 +08:00
plugins {
id 'com.android.library' // 替换 application 插件
id 'maven-publish' // 添加发布插件
}
2025-06-30 13:49:41 +08:00
android {
namespace "com.tfq.library"
2025-07-09 16:02:54 +08:00
compileSdkVersion 36
2025-06-30 13:49:41 +08:00
defaultConfig {
2025-07-09 16:02:54 +08:00
minSdkVersion 24
targetSdkVersion 36
2025-06-30 13:49:41 +08:00
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
// 添加 extractNativeLibs 配置
packagingOptions {
jniLibs {
useLegacyPackaging = true
pickFirsts += '**/*.so'
}
}
2025-06-30 13:49:41 +08:00
}
dependencies {
api 'androidx.appcompat:appcompat:1.7.0'
api 'com.google.android.material:material:1.12.0'
2025-06-30 13:49:41 +08:00
testImplementation 'junit:junit:4.13.2'
androidTestImplementation 'androidx.test.ext:junit:1.1.5'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.5.1'
//沉浸式
api 'com.geyifeng.immersionbar:immersionbar:3.2.2'
2025-06-30 13:49:41 +08:00
//权限请求
2025-07-09 16:02:54 +08:00
api 'com.github.getActivity:XXPermissions:23.0'
2025-06-30 13:49:41 +08:00
api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.28'
2025-07-09 16:02:54 +08:00
api 'androidx.activity:activity:1.10.1'
2025-06-30 13:49:41 +08:00
2025-07-09 16:02:54 +08:00
api 'com.google.code.gson:gson:2.13.1'
2025-06-30 13:49:41 +08:00
2025-07-09 16:02:54 +08:00
api 'com.squareup.okhttp3:okhttp:5.0.0-alpha.16'
api 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.16'
2025-06-30 13:49:41 +08:00
//图片加载
2025-07-09 16:02:54 +08:00
api 'com.github.bumptech.glide:glide:4.16.0'
2025-06-30 13:49:41 +08:00
// Glide图形转换工具
2025-07-09 16:02:54 +08:00
api 'jp.wasabeef:glide-transformations:4.3.0'
2025-06-30 13:49:41 +08:00
// 吐司框架https://github.com/getActivity/Toaster
api 'com.github.getActivity:Toaster:12.8'
//高斯模糊效果
// api 'com.github.centerzx:ShapeBlurView:1.0.5'
api('com.github.centerzx:ShapeBlurView:1.0.5') {
transitive = true // 确保传递依赖生效
}
2025-07-09 16:02:54 +08:00
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId = 'com.chuangketie.jk' // 自定义组织标识
artifactId = 'base-lib' // 库名称
version = '1.0.1'
2025-07-09 16:02:54 +08:00
artifact("$buildDir/outputs/aar/${project.name}-release.aar")// 指定 AAR 文件路径
}
}
repositories {
maven {
url = "file://${projectDir.parent}/maven" // 指向本地目录
}
}
}
2025-06-30 13:49:41 +08:00
}