-
Notifications
You must be signed in to change notification settings - Fork 181
/
Copy pathbuild.gradle
35 lines (33 loc) · 889 Bytes
/
build.gradle
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
kotlin_version = '1.5.21'
compose_version = '1.0.1'
}
repositories {
google()
mavenCentral()
}
dependencies {
classpath "com.android.tools.build:gradle:7.0.2"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
ext {
minSdkVersion = 23
compileSdkVersion = 33
targetSdkVersion = 26
buildToolsVersion = "31.0.0"
javaVersion = JavaVersion.VERSION_1_8
abiFilters = "armeabi-v7a,arm64-v8a"
localTest = false
isMasterPkg = true
hackJarName = "moon.jar"
versionCode = 1012
versionName = "1.0.12"
masterPkg = "org.waxmoon.github64"
assistPkg = "org.waxmoon.github32"
}