2022-04-04 14:03:10 +00:00
|
|
|
|
plugins {
|
|
|
|
|
id 'com.android.application'
|
|
|
|
|
id 'kotlin-android'
|
|
|
|
|
// id "androidx.navigation.safeargs.kotlin"
|
|
|
|
|
id 'kotlin-kapt'
|
2023-01-13 14:54:16 +00:00
|
|
|
|
id 'com.google.gms.google-services'
|
|
|
|
|
id 'com.google.firebase.firebase-perf'
|
|
|
|
|
id 'com.google.firebase.crashlytics'
|
|
|
|
|
|
2022-04-04 14:03:10 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
android {
|
|
|
|
|
signingConfigs {
|
|
|
|
|
debug {
|
|
|
|
|
storeFile file('keystore\\coldmint_debug.keystore')
|
|
|
|
|
storePassword '147258369'
|
|
|
|
|
keyPassword '147258369'
|
|
|
|
|
keyAlias 'coldmint_debug'
|
|
|
|
|
}
|
|
|
|
|
release {
|
|
|
|
|
storeFile file('keystore\\coldmint_release.keystore')
|
|
|
|
|
storePassword '2923268971'
|
|
|
|
|
keyPassword '2923268971'
|
|
|
|
|
keyAlias 'coldmint'
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-01-28 09:02:54 +00:00
|
|
|
|
compileSdk 33
|
|
|
|
|
// buildToolsVersion "30.0.3"
|
2022-04-04 14:03:10 +00:00
|
|
|
|
|
|
|
|
|
defaultConfig {
|
2022-09-01 08:47:39 +00:00
|
|
|
|
applicationId "com.coldmint.rust.pro"
|
2023-06-26 14:53:09 +00:00
|
|
|
|
minSdkVersion 23
|
2023-01-14 15:26:41 +00:00
|
|
|
|
targetSdkVersion 33
|
2023-07-20 06:57:53 +00:00
|
|
|
|
versionCode 28
|
2024-07-21 10:43:49 +00:00
|
|
|
|
versionName "2.1.1 Test(2024-7-20)"
|
2022-04-04 14:03:10 +00:00
|
|
|
|
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildTypes {
|
|
|
|
|
debug {
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
|
|
|
|
|
signingConfig signingConfigs.debug
|
|
|
|
|
}
|
|
|
|
|
release {
|
|
|
|
|
debuggable false //是否可以调试
|
|
|
|
|
buildConfigField "boolean", "LOG_DEBUG", "false" //不显示log
|
|
|
|
|
minifyEnabled true //移除无用java代码
|
|
|
|
|
|
|
|
|
|
shrinkResources true//移除无用的资源文件
|
|
|
|
|
zipAlignEnabled true//apk对其优化
|
|
|
|
|
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
|
|
|
|
|
signingConfig signingConfigs.release
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
compileOptions {
|
|
|
|
|
sourceCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
targetCompatibility JavaVersion.VERSION_1_8
|
|
|
|
|
}
|
|
|
|
|
kotlinOptions {
|
|
|
|
|
jvmTarget = '1.8'
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
buildFeatures {
|
|
|
|
|
viewBinding true
|
|
|
|
|
}
|
2022-04-23 12:41:25 +00:00
|
|
|
|
lint {
|
|
|
|
|
baseline file('lint-baseline.xml')
|
|
|
|
|
}
|
2022-05-14 00:19:30 +00:00
|
|
|
|
namespace 'com.coldmint.rust.pro'
|
2024-01-07 10:17:27 +00:00
|
|
|
|
gradle.taskGraph.whenReady {
|
|
|
|
|
tasks.each { task ->
|
|
|
|
|
if (task.name.contains("uploadCrashlyticsMappingFileRelease")) {
|
|
|
|
|
task.enabled = false
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-04-04 14:03:10 +00:00
|
|
|
|
}
|
2024-02-14 15:14:18 +00:00
|
|
|
|
/*
|
2024-01-07 10:17:27 +00:00
|
|
|
|
configurations.all {
|
|
|
|
|
resolutionStrategy {
|
|
|
|
|
force 'org.jetbrains.kotlin:kotlin-stdlib:1.6.0'
|
|
|
|
|
}
|
|
|
|
|
}
|
2024-02-14 15:14:18 +00:00
|
|
|
|
*/
|
2022-04-04 14:03:10 +00:00
|
|
|
|
|
|
|
|
|
dependencies {
|
2024-02-14 15:14:18 +00:00
|
|
|
|
configurations.configureEach {
|
2023-06-26 14:53:09 +00:00
|
|
|
|
exclude group: 'androidx.appcompat', module: 'appcompat'
|
|
|
|
|
}
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// implementation('org.jetbrains.kotlin:kotlin-stdlib:1.8.0')
|
2023-06-26 14:53:09 +00:00
|
|
|
|
implementation('org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.8.0') {
|
|
|
|
|
exclude group: 'org.jetbrains.kotlin', module: 'kotlin-stdlib'
|
|
|
|
|
}
|
|
|
|
|
|
2024-02-14 15:14:18 +00:00
|
|
|
|
implementation 'androidx.appcompat:appcompat:1.6.1'
|
|
|
|
|
implementation 'com.google.android.material:material:1.9.0'
|
2024-01-28 09:02:54 +00:00
|
|
|
|
|
2024-08-18 23:48:53 +00:00
|
|
|
|
//引发BUG的组件
|
|
|
|
|
implementation platform('com.google.firebase:firebase-bom:31.3.0')
|
2023-01-13 14:54:16 +00:00
|
|
|
|
implementation 'com.google.firebase:firebase-analytics-ktx'
|
|
|
|
|
implementation 'com.google.firebase:firebase-crashlytics-ktx'
|
|
|
|
|
implementation 'com.google.firebase:firebase-perf-ktx'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
implementation fileTree(dir: 'libs', include: ['*.aar', '*.jar'], exclude: [])
|
|
|
|
|
implementation project(path: ':library')
|
|
|
|
|
implementation project(':imageactivity')
|
2024-02-17 11:52:54 +00:00
|
|
|
|
|
|
|
|
|
implementation project(':editor')
|
|
|
|
|
// implementation 'io.github.Rosemoe.sora-editor:editor:0.16.5'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
|
2022-08-19 06:51:28 +00:00
|
|
|
|
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 这个依赖项提供了一个有趣的功能,
|
|
|
|
|
// 可以在应用程序中实现 Emoji 下雨效果。在用户界面上添加此效果可以增加应用程序的趣味性。
|
2022-07-29 15:19:07 +00:00
|
|
|
|
// implementation 'com.luolc:emoji-rain:0.1.1'
|
2022-07-19 14:32:02 +00:00
|
|
|
|
implementation 'me.zhanghai.android.fastscroll:library:1.1.8'
|
2022-07-08 12:01:14 +00:00
|
|
|
|
// 语种切换框架:https://github.com/getActivity/MultiLanguages
|
|
|
|
|
implementation 'com.github.getActivity:MultiLanguages:8.0'
|
2022-04-04 14:03:10 +00:00
|
|
|
|
//权限申请
|
2024-02-14 15:14:18 +00:00
|
|
|
|
implementation 'com.guolindev.permissionx:permissionx:1.7.1'
|
|
|
|
|
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation "androidx.room:room-runtime:2.4.0"
|
|
|
|
|
//注释处理器加上Room
|
2024-02-14 15:14:18 +00:00
|
|
|
|
//这是 Android Jetpack 中的 Room 数据库框架的依赖项,
|
|
|
|
|
//它提供了 SQLite 数据库的抽象层,可以帮助你在 Android 应用中进行数据持久化操作。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
annotationProcessor "androidx.room:room-compiler:2.4.0"
|
|
|
|
|
kapt "androidx.room:room-compiler:2.4.0"
|
|
|
|
|
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 让你可以轻松地创建包含多个选项的设置菜单。使用该库可以帮助你快速构建应用的设置界面,并处理用户的设置选择。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation "dev.rikka.rikkax.preference:simplemenu-preference:1.0.3"
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 提供了一些常见的控件和样式,如开关按钮、颜色选择器等,有助于提升用户体验。
|
2023-06-26 14:53:09 +00:00
|
|
|
|
implementation "dev.rikka.rikkax.material:material-preference:2.0.0"
|
2022-04-04 14:03:10 +00:00
|
|
|
|
|
|
|
|
|
//沉浸式状态栏
|
|
|
|
|
implementation 'com.gyf.immersionbar:immersionbar:3.0.0'
|
|
|
|
|
implementation 'com.gyf.immersionbar:immersionbar-ktx:3.0.0'
|
|
|
|
|
|
|
|
|
|
// TinyPinyin核心包,约80KB
|
2024-02-14 15:14:18 +00:00
|
|
|
|
implementation 'com.github.promeg:tinypinyin:2.0.3'//模组id ReleaseModActivity 中用到了
|
|
|
|
|
// 这是一个轮播图(Banner)库,用于在应用中实现图片轮播展示功能,通常用于展示广告、推荐内容等。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation 'io.github.youth5201314:banner:2.2.2'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 这是 AndroidX 核心 Kotlin 扩展库,提供了许多 Kotlin 语言的扩展函数和属性,能够简化 Android 开发中的代码编写。
|
2022-08-17 01:25:20 +00:00
|
|
|
|
implementation 'androidx.core:core-ktx:1.8.0'
|
|
|
|
|
implementation 'com.google.code.gson:gson:2.9.1'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 这是一个用于图片裁剪的库,可以用于在应用中实现对图片的裁剪操作,并提供了丰富的裁剪功能和界面。
|
2022-08-19 06:51:28 +00:00
|
|
|
|
implementation 'com.github.yalantis:ucrop:2.2.8-native'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation project(path: ':assistantCoreLibrary')
|
2022-07-08 14:34:22 +00:00
|
|
|
|
implementation project(path: ':dialog')
|
2024-02-14 15:14:18 +00:00
|
|
|
|
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation 'com.afollestad.material-dialogs:bottomsheets:3.3.0'
|
|
|
|
|
implementation 'com.afollestad.material-dialogs:input:3.3.0'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
|
|
|
|
|
// 这是一个流行的图片加载和缓存库,用于在 Android 应用中加载和显示图片。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation 'com.github.bumptech.glide:glide:4.11.0'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 这是 Glide 库的一个扩展库,提供了各种图像转换效果(如圆形、模糊等),可用于对 Glide 加载的图片进行处理。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation 'jp.wasabeef:glide-transformations:4.3.0'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 这也是 Glide 库的一个扩展库,用于从图片中提取颜色信息,以便在应用程序中进行颜色匹配和设计。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation 'com.github.florent37:glidepalette:2.1.2'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
// 这是一个用于在应用程序崩溃时提供自定义处理的库,可以在应用崩溃时显示自定义的崩溃界面或执行其他操作。
|
2022-04-04 14:03:10 +00:00
|
|
|
|
implementation 'cat.ereza:customactivityoncrash:2.3.0'
|
2024-02-14 15:14:18 +00:00
|
|
|
|
|
|
|
|
|
// SwipeRefreshLayout 是一个用于实现下拉刷新功能的 UI 组件,它提供了一个可滑动的刷新视图和相应的刷新事件处理机制,使得开发者可以轻松地实现下拉刷新的交互效果。
|
|
|
|
|
// implementation "androidx.swiperefreshlayout:swiperefreshlayout:1.1.0"
|
|
|
|
|
|
|
|
|
|
// 是一个自定义的 AppCompat 库,它是基于 Google 的 AppCompat 库进行扩展和优化的。
|
|
|
|
|
// 该库的主要功能是提供一些 UI 元素和主题样式,以使应用程序的 UI 更加现代化、美观。
|
|
|
|
|
implementation 'dev.rikka.rikkax.appcompat:appcompat:1.6.1'//不要删除请注意设置会崩的代码
|
|
|
|
|
// 在R.xml.root_preferences
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// implementation 'androidx.constraintlayout:constraintlayout:2.1.4'
|
|
|
|
|
def nav_version = "2.5.1"
|
2022-08-19 06:51:28 +00:00
|
|
|
|
implementation "androidx.navigation:navigation-fragment-ktx:$nav_version"
|
|
|
|
|
implementation "androidx.navigation:navigation-ui-ktx:$nav_version"
|
2024-02-14 15:14:18 +00:00
|
|
|
|
|
|
|
|
|
// 是指在 Android 项目中引入 AndroidX Preference 组件的 Kotlin 扩展库的依赖。
|
2022-08-06 13:59:24 +00:00
|
|
|
|
implementation 'androidx.preference:preference-ktx:1.2.0'
|
2022-04-04 14:03:10 +00:00
|
|
|
|
|
2024-02-14 15:14:18 +00:00
|
|
|
|
/* Flexbox 是一个用于实现灵活且可自适应的布局的库,
|
|
|
|
|
它基于 CSS 的 Flexbox 布局模型,能够帮助开发者更容易地创建复杂的布局结构,并实现各种灵活的布局需求。*/
|
2024-02-05 03:53:58 +00:00
|
|
|
|
implementation 'com.google.android.flexbox:flexbox:3.0.0'
|
|
|
|
|
|
2024-07-15 08:02:03 +00:00
|
|
|
|
// Android智能下拉刷新框架-SmartRefreshLayout
|
|
|
|
|
implementation 'io.github.scwang90:refresh-layout-kernel:2.1.0' //核心必须依赖
|
|
|
|
|
implementation 'io.github.scwang90:refresh-header-classics:2.1.0' //经典刷新头
|
|
|
|
|
implementation 'io.github.scwang90:refresh-footer-classics:2.1.0' //经典加载
|
|
|
|
|
|
2022-04-04 14:03:10 +00:00
|
|
|
|
}
|