JKBaseLib/BaseLibrary/build.gradle

85 lines
2.3 KiB
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.

plugins {
id 'com.android.library' // 替换 application 插件
id 'maven-publish' // 添加发布插件
}
android {
namespace "com.tfq.library"
compileSdkVersion 36
defaultConfig {
minSdkVersion 24
targetSdkVersion 36
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
// 添加 extractNativeLibs 配置
packagingOptions {
jniLibs {
useLegacyPackaging = true
pickFirsts += '**/*.so'
}
}
}
dependencies {
api 'androidx.appcompat:appcompat:1.7.0'
api 'com.google.android.material:material:1.12.0'
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'
//权限请求
api 'com.github.getActivity:XXPermissions:23.0'
api 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.28'
api 'androidx.activity:activity:1.10.1'
api 'com.google.code.gson:gson:2.13.1'
api 'com.squareup.okhttp3:okhttp:5.0.0-alpha.16'
api 'com.squareup.okhttp3:logging-interceptor:5.0.0-alpha.16'
//图片加载
api 'com.github.bumptech.glide:glide:4.16.0'
// Glide图形转换工具
api 'jp.wasabeef:glide-transformations:4.3.0'
// 吐司框架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 // 确保传递依赖生效
}
}
afterEvaluate {
publishing {
publications {
release(MavenPublication) {
groupId = 'com.chuangketie.jk' // 自定义组织标识
artifactId = 'base-lib' // 库名称
version = '1.0.1'
artifact("$buildDir/outputs/aar/${project.name}-release.aar")// 指定 AAR 文件路径
}
}
repositories {
maven {
url = "file://${projectDir.parent}/maven" // 指向本地目录
}
}
}
}