1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-08 00:40:29 +08:00
Files
copymanga/build.gradle
fumiama 16dd13e902 2.0.beta6
1. 修复漫画封面为空导致的主页闪退
2. 增加详情页导航到作者、标签
3. 增加阅览缓存、音量键页、双页切分
4. 优化卷轴模式、下载逻辑
2021-05-14 22:34:29 +08:00

30 lines
824 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.5.0'
repositories {
google()
jcenter()
mavenCentral()
maven { url 'https://maven.google.com' }
}
dependencies {
classpath 'com.android.tools.build:gradle:4.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'com.tencent.mm:AndResGuard-gradle-plugin:1.2.21'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}