You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
legado/app/build.gradle

209 lines
6.7 KiB

6 years ago
apply plugin: 'com.android.application'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
6 years ago
apply plugin: 'kotlin-kapt'
apply plugin: 'de.timfreiheit.resourceplaceholders'
5 years ago
apply plugin: 'io.fabric'
6 years ago
6 years ago
androidExtensions {
experimental = true
}
6 years ago
static def releaseTime() {
return new Date().format("yy.MMddHH", TimeZone.getTimeZone("GMT+8"))
}
def name = "legado"
def version = "3." + releaseTime()
6 years ago
def gitCommits = Integer.parseInt('git rev-list --count HEAD'.execute([], project.rootDir).text.trim())
6 years ago
android {
5 years ago
compileSdkVersion 29
5 years ago
flavorDimensions("version")
6 years ago
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
}
6 years ago
}
}
6 years ago
defaultConfig {
6 years ago
applicationId "io.legado.app"
6 years ago
minSdkVersion 21
5 years ago
targetSdkVersion 29
6 years ago
versionCode gitCommits
versionName version
6 years ago
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
6 years ago
project.ext.set("archivesBaseName", name + "_" + version)
5 years ago
multiDexEnabled true
5 years ago
javaCompileOptions {
annotationProcessorOptions {
arguments = [
"room.incremental" : "true",
4 years ago
"room.expandProjection": "true",
"room.schemaLocation" : "$projectDir/schemas".toString()
5 years ago
]
}
}
6 years ago
}
buildTypes {
release {
if (project.hasProperty("RELEASE_STORE_FILE")) {
signingConfig signingConfigs.myConfig
}
applicationIdSuffix '.release'
5 years ago
minifyEnabled false
6 years ago
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
6 years ago
debug {
if (project.hasProperty("RELEASE_STORE_FILE")) {
signingConfig signingConfigs.myConfig
}
6 years ago
applicationIdSuffix '.debug'
versionNameSuffix 'debug'
minifyEnabled false
5 years ago
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
6 years ago
}
android.applicationVariants.all { variant ->
variant.outputs.all {
outputFileName = "${name}_${defaultConfig.versionName}.apk"
}
}
6 years ago
}
productFlavors {
app {
dimension "version"
manifestPlaceholders = [APP_CHANNEL_VALUE: "app"]
}
google {
dimension "version"
applicationId "io.legado.play"
manifestPlaceholders = [APP_CHANNEL_VALUE: "google"]
}
}
6 years ago
compileOptions {
// Flag to enable support for the new language APIs
5 years ago
coreLibraryDesugaringEnabled true
// Sets Java compatibility to Java 8
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
6 years ago
}
5 years ago
kotlinOptions {
jvmTarget = "1.8"
}
6 years ago
}
5 years ago
resourcePlaceholders {
files = ['xml/shortcuts.xml']
}
6 years ago
kapt {
arguments {
arg("room.schemaLocation", "$projectDir/schemas")
}
6 years ago
}
dependencies {
4 years ago
coreLibraryDesugaring 'com.android.tools:desugar_jdk_libs:1.0.9'
6 years ago
implementation fileTree(dir: 'libs', include: ['*.jar'])
testImplementation 'junit:junit:4.13'
6 years ago
androidTestImplementation 'androidx.test:runner:1.2.0'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
//kotlin
6 years ago
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
6 years ago
5 years ago
//fireBase
4 years ago
implementation 'com.google.firebase:firebase-core:17.4.4'
5 years ago
implementation 'com.crashlytics.sdk.android:crashlytics:2.10.1'
6 years ago
//androidX
5 years ago
implementation 'androidx.core:core-ktx:1.3.0'
5 years ago
implementation 'androidx.appcompat:appcompat:1.1.0'
5 years ago
implementation 'androidx.media:media:1.1.0'
implementation 'androidx.preference:preference:1.1.1'
5 years ago
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
4 years ago
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
5 years ago
implementation 'androidx.viewpager2:viewpager2:1.0.0'
5 years ago
implementation 'com.google.android.material:material:1.1.0'
6 years ago
implementation 'com.google.android:flexbox:1.1.0'
implementation 'com.google.code.gson:gson:2.8.6'
6 years ago
6 years ago
//lifecycle
5 years ago
def lifecycle_version = '2.2.0'
6 years ago
implementation "androidx.lifecycle:lifecycle-extensions:$lifecycle_version"
5 years ago
implementation "androidx.lifecycle:lifecycle-common-java8:$lifecycle_version"
6 years ago
6 years ago
//room
def room_version = '2.2.5'
6 years ago
implementation "androidx.room:room-runtime:$room_version"
kapt "androidx.room:room-compiler:$room_version"
6 years ago
//paging
implementation 'androidx.paging:paging-runtime-ktx:2.1.2'
6 years ago
//anko
6 years ago
def anko_version = '0.10.8'
implementation "org.jetbrains.anko:anko-sdk27:$anko_version"
implementation "org.jetbrains.anko:anko-sdk27-listeners:$anko_version"
6 years ago
6 years ago
//liveEventBus
implementation 'com.jeremyliao:live-event-bus-x:1.5.7'
6 years ago
//协程
def coroutines_version = '1.3.7'
6 years ago
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutines_version"
implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines_version"
//规则相关
implementation 'org.jsoup:jsoup:1.13.1'
6 years ago
implementation 'cn.wanghaomiao:JsoupXpath:2.3.2'
5 years ago
implementation 'com.jayway.jsonpath:json-path:2.4.0'
//JS rhino
implementation 'com.github.gedoor:rhino-android:1.4'
6 years ago
//网络
//noinspection GradleDependency
implementation 'com.squareup.retrofit2:retrofit:2.7.2'
4 years ago
implementation 'com.github.franmontiel:PersistentCookieJar:v1.0.1'
6 years ago
//Glide
implementation 'com.github.bumptech.glide:glide:4.11.0'
6 years ago
5 years ago
//webServer
implementation 'org.nanohttpd:nanohttpd:2.3.1'
implementation 'org.nanohttpd:nanohttpd-websocket:2.3.1'
6 years ago
//二维码
implementation 'cn.bingoogolapple:bga-qrcode-zxing:1.3.7'
6 years ago
6 years ago
//颜色选择
implementation 'com.jaredrummler:colorpicker:1.1.0'
5 years ago
5 years ago
//apache
implementation 'org.apache.commons:commons-lang3:3.10'
5 years ago
implementation 'org.apache.commons:commons-text:1.8'
5 years ago
//MarkDown
implementation 'ru.noties.markwon:core:3.1.0'
//转换繁体
implementation 'com.hankcs:hanlp:portable-1.7.7'
//epub
implementation('com.positiondev.epublib:epublib-core:3.1') {
exclude group: 'org.slf4j'
exclude group: 'xmlpull'
}
//E-Ink 有些手机会出现重影
//implementation 'fadeapp.widgets:scrollless-recyclerView:1.0.2'
}
5 years ago
5 years ago
apply plugin: 'com.google.gms.google-services'