1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-07 16:20:24 +08:00
Files
copymanga/build.gradle
源文雨 555d78a58f v1.5.2
新增
1. 检测更新
修复
1. 漫画阅读页点击配置黑屏
优化
1. 隐藏搜索页 ranobe
升级
1. SDK 版本到 36
2025-07-06 00:17:55 +09:00

30 lines
835 B
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = "$cm_kotlin_version"
repositories {
gradlePluginPortal()
google()
mavenCentral()
maven { url 'https://maven.google.com' }
maven { url "https://jitpack.io" }
}
dependencies {
classpath 'com.android.tools.build:gradle:8.6.1'
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()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
tasks.register('clean', Delete) {
delete rootProject.buildDir
}