1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-07 08:10:23 +08:00
Files
copymanga/build.gradle
源文雨 49b3f7a1c7 v2.0.beta18
新增
1. 自定义API地址
2. 图片代理
修复
1. 文本编辑框不跟随输入法上移
2. 获取图书信息失败(#26)
2023-09-05 00:37:53 +08:00

33 lines
847 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.1.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()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}