mirror of
https://github.com/fumiama/copymanga.git
synced 2026-06-05 07:20:23 +08:00
新增 1. 详情页标记已下载章节 2. 详情页以tab区分卷标 3. 以深浅标示当前选择的tab 修复 1. 详情页加载结束时卡顿 2. 某些漫画无法变更清晰度 3. 全新上架显示错误 4. 专题系列有时简介不显示 优化 1. 替换弃用API 2. 携程化: 检查更新, 菜单切换, 详情页 3. StatusCardFlow标签排序 4. CardList加载速度 升级 1. 支持库版本
33 lines
854 B
Groovy
33 lines
854 B
Groovy
// Top-level build file where you can add configuration options common to all sub-projects/modules.
|
|
buildscript {
|
|
ext.kotlin_version = '1.7.10'
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
mavenCentral()
|
|
maven { url 'https://maven.google.com' }
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
dependencies {
|
|
classpath 'com.android.tools.build:gradle:8.2.2'
|
|
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
|
|
|
|
// NOTE: Do not place your application dependencies here; they belong
|
|
// in the individual module build.gradle files
|
|
}
|
|
}
|
|
|
|
allprojects {
|
|
repositories {
|
|
google()
|
|
jcenter()
|
|
mavenCentral()
|
|
maven { url "https://jitpack.io" }
|
|
}
|
|
}
|
|
|
|
tasks.register('clean', Delete) {
|
|
delete rootProject.buildDir
|
|
}
|