123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264 |
- apply plugin: 'com.android.application'
- apply plugin: 'android-aspectjx'
- apply from: '../common.gradle'
- // Android 代码规范文档:https://github.com/getActivity/AndroidCodeStandard
- android {
- // 资源目录存放指引:https://developer.android.google.cn/guide/topics/resources/providing-resources
- defaultConfig {
- // 无痛修改包名:https://www.jianshu.com/p/17327e191d2e
- applicationId 'com.clwl.app'
- // 仅保留中文语种的资源
- resConfigs 'zh'
- // 仅保留 xxhdpi 图片资源(目前主流分辨率 1920 * 1080)
- resConfigs 'xxhdpi'
- // 混淆配置
- proguardFiles 'proguard-sdk.pro', 'proguard-app.pro'
- // 日志打印开关
- buildConfigField('boolean', 'LOG_ENABLE', '' + LOG_ENABLE + '')
- // 测试包下的 BuglyId
- buildConfigField('String', 'BUGLY_ID', '"' + BUGLY_ID + '"')
- // 测试服务器的主机地址
- buildConfigField('String', 'HOST_URL', '"' + HOST_URL + '"')
- }
- // Apk 签名的那些事:https://www.jianshu.com/p/a1f8e5896aa2
- signingConfigs {
- config {
- storeFile file(StoreFile)
- storePassword StorePassword
- keyAlias KeyAlias
- keyPassword KeyPassword
- }
- }
- // 构建配置:https://developer.android.google.cn/studio/build/build-variants
- buildTypes {
- debug {
- // 给包名添加后缀
- applicationIdSuffix '.debug'
- // 调试模式开关
- debuggable true
- jniDebuggable true
- // 压缩对齐开关
- zipAlignEnabled false
- // 移除无用的资源
- shrinkResources false
- // 代码混淆开关
- minifyEnabled false
- // 签名信息配置
- signingConfig signingConfigs.config
- // 添加清单占位符
- addManifestPlaceholders([
- 'app_name': '常来微聊 Debug 版'
- ])
- // 调试模式下只保留一种架构的 so 库,提升打包速度
- ndk {
- abiFilters 'armeabi-v7a', 'x86'
- }
- }
- preview.initWith(debug)
- preview {
- applicationIdSuffix ''
- // 添加清单占位符
- addManifestPlaceholders([
- 'app_name': '常来微聊 Preview 版'
- ])
- }
- release {
- // 调试模式开关
- debuggable false
- jniDebuggable false
- // 压缩对齐开关
- zipAlignEnabled true
- // 移除无用的资源
- shrinkResources true
- // 代码混淆开关
- minifyEnabled true
- // 签名信息配置
- signingConfig signingConfigs.config
- // 添加清单占位符
- addManifestPlaceholders([
- 'app_name': '常来微聊'
- ])
- // 仅保留两种架构的 so 库,根据 Bugly 统计得出
- ndk {
- // armeabi:万金油架构平台(占用率:0%)
- // armeabi-v7a:曾经主流的架构平台(占用率:10%)
- // arm64-v8a:目前主流架构平台(占用率:95%)
- abiFilters 'armeabi-v7a', 'arm64-v8a'
- }
- }
- }
- packagingOptions {
- // 剔除这个包下的所有文件(不会移除签名信息)
- exclude 'META-INF/*******'
- }
- // AOP 配置(exclude 和 include 二选一)
- // 需要进行配置,否则就会引发冲突,具体表现为:
- // 第一种:编译不过去,报错:java.util.zip.ZipException:Cause: zip file is empty
- // 第二种:编译能过去,但运行时报错:ClassNotFoundException: Didn't find class on path: DexPathList
- aspectjx {
- // 排除一些第三方库的包名(Gson、 LeakCanary 和 AOP 有冲突)
- // exclude 'androidx', 'com.google', 'com.squareup', 'org.apache', 'com.alipay', 'com.taobao', 'versions.9'
- // 只对以下包名做 AOP 处理
- include android.defaultConfig.applicationId
- }
- applicationVariants.all { variant ->
- // apk 输出文件名配置
- variant.outputs.all { output ->
- outputFileName = rootProject.getName() + '_v' + variant.versionName + '_' + variant.buildType.name
- if (variant.buildType.name == buildTypes.release.getName()) {
- outputFileName += '_' + new Date().format('MMdd')
- }
- outputFileName += '.apk'
- }
- }
- sourceSets {
- main {
- jniLibs.srcDirs = ['libs']
- }
- }
- lintOptions {
- abortOnError false
- }
- //More than one file was found with OS independent path 'lib/x86/libc++_shared.so'. If you are using j
- packagingOptions {
- pickFirst 'lib/x86/libc++_shared.so'
- pickFirst 'lib/arm64-v8a/libc++_shared.so'
- pickFirst 'lib/armeabi-v7a/libc++_shared.so'
- pickFirst 'lib/x86_64/libc++_shared.so'
- }
- }
- // 添加构建依赖项:https://developer.android.google.cn/studio/build/dependencies
- // api 与 implementation 的区别:https://www.jianshu.com/p/8962d6ba936e
- dependencies {
- // 基类封装
- implementation project(':library:base')
- // 控件封装
- implementation project(':library:widget')
- // 友盟封装
- //implementation project(':library:umeng')
- // 录音
- implementation project(':library:mp3')
- // 权限请求框架:https://github.com/getActivity/XXPermissions
- implementation 'com.github.getActivity:XXPermissions:12.3'
- // 标题栏框架:https://github.com/getActivity/TitleBar
- implementation 'com.github.getActivity:TitleBar:9.2'
- // 吐司框架:https://github.com/getActivity/ToastUtils
- implementation 'com.github.getActivity:ToastUtils:9.5'
- // 网络请求框架:https://github.com/getActivity/EasyHttp
- implementation 'com.github.getActivity:EasyHttp:10.2'
- // OkHttp 框架:https://github.com/square/okhttp
- // noinspection GradleDependency
- implementation 'com.squareup.okhttp3:okhttp:3.12.13'
- // Json 解析框架:https://github.com/google/gson
- implementation 'com.google.code.gson:gson:2.8.8'
- // Gson 解析容错:https://github.com/getActivity/GsonFactory
- implementation 'com.github.getActivity:GsonFactory:5.2'
- // Shape 框架:https://github.com/getActivity/ShapeView
- implementation 'com.github.getActivity:ShapeView:6.0'
- // AOP 插件库:https://mvnrepository.com/artifact/org.aspectj/aspectjrt
- implementation 'org.aspectj:aspectjrt:1.9.6'
- // 图片加载框架:https://github.com/bumptech/glide
- // 官方使用文档:https://github.com/Muyangmin/glide-docs-cn
- implementation 'com.github.bumptech.glide:glide:4.12.0'
- annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
- // 沉浸式框架:https://github.com/gyf-dev/ImmersionBar
- implementation 'com.gyf.immersionbar:immersionbar:3.0.0'
- // 手势 ImageView:https://github.com/Baseflow/PhotoView
- implementation 'com.github.Baseflow:PhotoView:2.3.0'
- // Bugly 异常捕捉:https://bugly.qq.com/docs/user-guide/instruction-manual-android/?v=20190418140644
- implementation 'com.tencent.bugly:crashreport:3.4.4'
- implementation 'com.tencent.bugly:nativecrashreport:3.9.2'
- // 动画解析库:https://github.com/airbnb/lottie-android
- // 动画资源:https://lottiefiles.com、https://icons8.com/animated-icons
- implementation 'com.airbnb.android:lottie:4.1.0'
- // 上拉刷新下拉加载框架:https://github.com/scwang90/SmartRefreshLayout
- implementation 'com.scwang.smart:refresh-layout-kernel:2.0.3'
- implementation 'com.scwang.smart:refresh-header-material:2.0.3'
- implementation 'com.scwang.smart:refresh-footer-classics:2.0.3' //经典加载
- // 日志打印框架:https://github.com/JakeWharton/timber
- implementation 'com.jakewharton.timber:timber:4.7.1'
- // 指示器框架:https://github.com/ongakuer/CircleIndicator
- implementation 'me.relex:circleindicator:2.1.6'
- // 腾讯 MMKV:https://github.com/Tencent/MMKV
- implementation 'com.tencent:mmkv-static:1.2.10'
- // 内存泄漏监测框架:https://github.com/square/leakcanary
- debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
- previewImplementation 'com.squareup.leakcanary:leakcanary-android:2.7'
- //BaseRecyclerViewAdapterHelper: https://github.com/CymChad/BaseRecyclerViewAdapterHelper
- implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:3.0.4'
- //implementation 'com.github.CymChad:BaseRecyclerViewAdapterHelper:2.9.50'
- // lombok: 插件
- implementation 'org.projectlombok:lombok:1.18.16'
- annotationProcessor 'org.projectlombok:lombok:1.18.16'
- //验证码输入框
- implementation 'com.github.Wynsbin:VerificationCodeInputView:1.0.2'
- //图片选择器
- implementation 'com.github.LuckSiege.PictureSelector:picture_library:v2.6.0'
- // 轮播图:https://github.com/youth5201314/banner
- implementation 'io.github.youth5201314:banner:2.2.2'
- //live_bus https://github.com/JeremyLiao/LiveEventBus
- implementation 'io.github.jeremyliao:live-event-bus-x:1.8.0'
- //富文本编辑库 https://github.com/wasabeef/richeditor-android
- implementation 'jp.wasabeef:richeditor-android:2.0.0'
- // 多语种:https://github.com/getActivity/MultiLanguages
- // 悬浮窗:https://github.com/getActivity/XToast
- // 日志输出:https://github.com/getActivity/Logcat
- // 工具类:https://github.com/Blankj/AndroidUtilCode
- // 轮播图:https://github.com/bingoogolapple/BGABanner-Android
- // 二维码:https://github.com/bingoogolapple/BGAQRCode-Android
- // 跑马灯:https://github.com/sunfusheng/MarqueeView
- // 对象注解:https://www.jianshu.com/p/f1f888e4a35f
- // 对象存储:https://github.com/leavesC/DoKV
- // 多渠道打包:https://github.com/Meituan-Dianping/walle
- // 设备唯一标识:http://msa-alliance.cn/col.jsp?id=120
- // 嵌套滚动容器:https://github.com/donkingliang/ConsecutiveScroller
- // 隐私调用监控:https://github.com/huage2580/PermissionMonitor
- }
|