1
0
mirror of https://github.com/fumiama/copymanga.git synced 2026-06-28 06:40:29 +08:00

2.0.beta13

1. 解决一些闪退
2. 增加设置页面
3. 升级ABI
4. 修复gradle疑难杂症
This commit is contained in:
源文雨
2022-10-18 00:50:10 +08:00
parent 663f853e81
commit 1c18d317f8
7 changed files with 83 additions and 15 deletions

View File

@@ -1,15 +1,16 @@
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.6.10'
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:7.0.2'
classpath 'com.android.tools.build:gradle:7.2.1'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
// NOTE: Do not place your application dependencies here; they belong
@@ -21,10 +22,11 @@ allprojects {
repositories {
google()
jcenter()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
}