legado/app/build.gradle

253 lines
9.0 KiB
Groovy
Raw Normal View History

plugins {
id "com.android.application"
id 'org.jetbrains.kotlin.android'
id 'kotlin-parcelize'
id 'kotlin-kapt'
2022-05-26 14:48:12 +08:00
//id "com.google.gms.google-services"
}
2022-01-03 23:59:44 +08:00
apply from: 'download.gradle'
static def releaseTime() {
return new Date().format("yy.MMddHH", TimeZone.getTimeZone("GMT+8"))
}
def name = "legado"
def version = "3." + releaseTime()
2022-04-25 14:43:22 +08:00
def gitCommits = Integer.parseInt('git rev-list HEAD --count'.execute().text.trim())
2022-01-03 23:59:44 +08:00
android {
2022-12-19 12:49:59 +08:00
compileSdk = compile_sdk_version
buildToolsVersion = build_tool_version
namespace 'io.legado.app'
2022-01-03 23:59:44 +08:00
kotlinOptions {
jvmTarget = "11"
}
2022-01-03 23:59:44 +08:00
signingConfigs {
if (project.hasProperty("RELEASE_STORE_FILE")) {
myConfig {
storeFile file(RELEASE_STORE_FILE)
storePassword RELEASE_STORE_PASSWORD
keyAlias RELEASE_KEY_ALIAS
keyPassword RELEASE_KEY_PASSWORD
v1SigningEnabled true
v2SigningEnabled true
2022-03-07 20:23:08 +08:00
enableV3Signing = true
enableV4Signing = true
2022-01-03 23:59:44 +08:00
}
}
}
defaultConfig {
applicationId "io.legado.app"
2022-09-30 18:48:44 +08:00
minSdk 21
targetSdk 33
2022-01-04 00:17:34 +08:00
versionCode 10000 + gitCommits
2022-01-03 23:59:44 +08:00
versionName version
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
project.ext.set("archivesBaseName", name + "_" + version)
buildConfigField "String", "Cronet_Version", "\"$CronetVersion\""
buildConfigField "String", "Cronet_Main_Version", "\"$CronetMainVersion\""
2022-01-03 23:59:44 +08:00
javaCompileOptions {
annotationProcessorOptions {
arguments += [
"room.incremental" : "true",
"room.expandProjection": "true",
"room.schemaLocation" : "$projectDir/schemas".toString()
]
}
}
}
buildFeatures {
buildConfig true
2022-01-03 23:59:44 +08:00
viewBinding true
}
buildTypes {
release {
if (project.hasProperty("RELEASE_STORE_FILE")) {
signingConfig signingConfigs.myConfig
}
applicationIdSuffix '.release'
2022-10-26 18:09:31 +08:00
minifyEnabled true
shrinkResources true
2022-01-03 23:59:44 +08:00
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
debug {
2022-01-03 23:59:44 +08:00
if (project.hasProperty("RELEASE_STORE_FILE")) {
signingConfig signingConfigs.myConfig
}
applicationIdSuffix '.debug'
versionNameSuffix 'debug'
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
android.applicationVariants.all { variant ->
variant.outputs.all {
def flavor = variant.productFlavors[0].name
outputFileName = "${name}_${flavor}_${defaultConfig.versionName}.apk"
2022-01-03 23:59:44 +08:00
}
}
2022-09-30 16:45:41 +08:00
flavorDimensions.add("mode")
2022-01-03 23:59:44 +08:00
productFlavors {
app {
dimension "mode"
2022-09-30 16:45:41 +08:00
manifestPlaceholders.put("APP_CHANNEL_VALUE", "app")
2022-01-03 23:59:44 +08:00
}
google {
dimension "mode"
applicationId "io.legado.play"
2022-09-30 16:45:41 +08:00
manifestPlaceholders.put("APP_CHANNEL_VALUE", "google")
2022-01-03 23:59:44 +08:00
}
}
compileOptions {
// Flag to enable support for the new language APIs
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 11
sourceCompatibility JavaVersion.VERSION_11
targetCompatibility JavaVersion.VERSION_11
}
sourceSets {
// Adds exported schema location as test app assets.
androidTest.assets.srcDirs += files("$projectDir/schemas".toString())
}
2022-05-24 00:40:48 +08:00
lint {
checkDependencies true
}
2022-01-03 23:59:44 +08:00
tasks.withType(JavaCompile) {
//options.compilerArgs << "-Xlint:unchecked"
}
}
dependencies {
compileOnly "com.android.tools.build:gradle:$agp_version"
2022-09-17 23:29:18 +08:00
//noinspection GradleDependency,GradlePackageUpdate
coreLibraryDesugaring('com.android.tools:desugar_jdk_libs:2.0.2')
2022-01-03 23:59:44 +08:00
testImplementation('junit:junit:4.13.2')
androidTestImplementation('androidx.test:runner:1.5.2')
androidTestImplementation('androidx.test.espresso:espresso-core:3.5.1')
2022-01-03 23:59:44 +08:00
//kotlin
2022-09-19 20:10:49 +08:00
//noinspection GradleDependency,DifferentStdlibGradleVersion
2022-01-03 23:59:44 +08:00
implementation("org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version")
//Kotlin反射
2022-09-19 20:10:49 +08:00
//noinspection GradleDependency,DifferentStdlibGradleVersion
2022-01-03 23:59:44 +08:00
implementation("org.jetbrains.kotlin:kotlin-reflect:$kotlin_version")
//协程
2022-07-24 20:47:30 +08:00
def coroutines_version = '1.6.4'
2022-01-03 23:59:44 +08:00
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version")
implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version")
2022-05-24 21:00:42 +08:00
//图像处理库Toolkit
implementation('com.github.android:renderscript-intrinsics-replacement-toolkit:b6363490c3')
2022-01-03 23:59:44 +08:00
//androidX
2022-09-17 22:30:41 +08:00
implementation('androidx.core:core-ktx:1.9.0')
implementation('androidx.appcompat:appcompat:1.6.1')
implementation('androidx.activity:activity-ktx:1.6.1')
implementation('androidx.fragment:fragment-ktx:1.5.5')
2022-01-27 12:13:21 +08:00
implementation('androidx.preference:preference-ktx:1.2.0')
2022-05-26 09:52:27 +08:00
implementation('androidx.constraintlayout:constraintlayout:2.1.4')
2022-01-03 23:59:44 +08:00
implementation('androidx.swiperefreshlayout:swiperefreshlayout:1.1.0')
implementation('androidx.viewpager2:viewpager2:1.0.0')
implementation('androidx.webkit:webkit:1.6.0')
2022-03-12 23:43:47 +08:00
2022-04-11 17:16:15 +08:00
//google
implementation('com.google.android.material:material:1.8.0')
2022-01-03 23:59:44 +08:00
implementation('com.google.android.flexbox:flexbox:3.0.0')
implementation('com.google.code.gson:gson:2.10.1')
2022-01-03 23:59:44 +08:00
2022-03-12 22:23:29 +08:00
//lifecycle
def lifecycle_version = '2.5.1'
2022-03-12 22:23:29 +08:00
implementation("androidx.lifecycle:lifecycle-common-java8:$lifecycle_version")
2022-10-19 17:53:24 +08:00
implementation("androidx.lifecycle:lifecycle-service:$lifecycle_version")
2022-03-12 22:23:29 +08:00
2022-01-03 23:59:44 +08:00
//media
2022-04-22 14:16:47 +08:00
implementation("androidx.media:media:1.6.0")
2022-01-03 23:59:44 +08:00
implementation("com.google.android.exoplayer:exoplayer-core:$exoplayer_version")
implementation("com.google.android.exoplayer:extension-okhttp:$exoplayer_version")
//Splitties
implementation("com.louiscad.splitties:splitties-appctx:$splitties_version")
implementation("com.louiscad.splitties:splitties-systemservices:$splitties_version")
implementation("com.louiscad.splitties:splitties-views:$splitties_version")
//room
implementation("androidx.room:room-runtime:$room_version")
implementation("androidx.room:room-ktx:$room_version")
2022-09-08 19:47:53 +08:00
kapt("androidx.room:room-compiler:$room_version")
2022-09-17 12:01:26 +08:00
androidTestImplementation("androidx.room:room-testing:$room_version")
2022-01-03 23:59:44 +08:00
//liveEventBus
implementation('io.github.jeremyliao:live-event-bus-x:1.8.0')
//规则相关
implementation('org.jsoup:jsoup:1.15.3')
2022-02-01 23:12:58 +08:00
implementation('com.jayway.jsonpath:json-path:2.7.0')
implementation('cn.wanghaomiao:JsoupXpath:2.5.2')
2022-01-03 23:59:44 +08:00
implementation(project(path: ':epublib'))
//JS rhino
2022-04-21 22:49:17 +08:00
//implementation('com.github.gedoor:rhino-android:1.8')
2022-04-22 14:16:47 +08:00
implementation(fileTree(dir: 'lib', include: ['rhino-*.jar']))
2022-01-03 23:59:44 +08:00
//网络
implementation('com.squareup.okhttp3:okhttp:4.10.0')
2023-01-22 21:58:19 +08:00
appImplementation(fileTree(dir: 'cronetlib', include: ['*.jar', '*.aar']))
appImplementation 'com.google.protobuf:protobuf-javalite:3.22.0'
2022-01-03 23:59:44 +08:00
//Glide
def glideVersion = "4.14.2"
2022-02-09 19:51:12 +08:00
implementation("com.github.bumptech.glide:glide:$glideVersion")
kapt("com.github.bumptech.glide:compiler:$glideVersion")
2022-01-03 23:59:44 +08:00
2022-10-08 19:35:39 +08:00
//Svg
implementation("com.caverock:androidsvg-aar:1.4")
//Glide svg plugin
implementation("com.github.qoqa:glide-svg:4.0.2")
2022-01-03 23:59:44 +08:00
//webServer
def nanoHttpdVersion = "2.3.1"
implementation("org.nanohttpd:nanohttpd:$nanoHttpdVersion")
implementation("org.nanohttpd:nanohttpd-websocket:$nanoHttpdVersion")
//二维码
implementation('com.github.jenly1314:zxing-lite:2.3.0')
2022-01-03 23:59:44 +08:00
//颜色选择
implementation('com.jaredrummler:colorpicker:1.1.0')
//apache
implementation('org.apache.commons:commons-text:1.10.0')
2022-01-03 23:59:44 +08:00
//MarkDown
def markwonVersion = "4.6.2"
implementation("io.noties.markwon:core:$markwonVersion")
implementation("io.noties.markwon:image-glide:$markwonVersion")
implementation("io.noties.markwon:ext-tables:$markwonVersion")
implementation("io.noties.markwon:html:$markwonVersion")
//转换繁体
implementation('com.github.liuyueyi.quick-chinese-transfer:quick-transfer-core:0.2.10')
2022-01-03 23:59:44 +08:00
2022-05-27 08:01:24 +08:00
//加解密类库,有些书源使用
2022-09-17 23:29:18 +08:00
//noinspection GradleDependency,GradlePackageUpdate
implementation('cn.hutool:hutool-crypto:5.8.12')
2022-01-11 20:41:37 +08:00
2022-05-27 08:01:24 +08:00
//firebase, 崩溃统计和性能统计, 会导致共存版本崩溃
//implementation platform('com.google.firebase:firebase-bom:30.0.1')
//implementation 'com.google.firebase:firebase-analytics-ktx:21.0.0'
//implementation 'com.google.firebase:firebase-perf-ktx:20.0.6'
2022-01-03 23:59:44 +08:00
2022-08-17 15:19:01 +08:00
//LeakCanary, 内存泄露检测
2022-02-26 23:08:13 +08:00
//debugImplementation('com.squareup.leakcanary:leakcanary-android:2.7')
2022-05-27 08:01:24 +08:00
//com.github.AmrDeveloper:CodeView代码编辑已集成到应用内
//epubLib集成到应用内
2022-01-03 23:59:44 +08:00
}