-
Notifications
You must be signed in to change notification settings - Fork 82
/
build.gradle.kts
84 lines (71 loc) · 2.29 KB
/
build.gradle.kts
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
import com.aliucord.gradle.AliucordExtension
import com.android.build.gradle.BaseExtension
import org.jetbrains.kotlin.gradle.tasks.KotlinCompile
buildscript {
repositories {
google()
mavenCentral()
maven("https://maven.aliucord.com/snapshots")
maven("https://jitpack.io")
}
dependencies {
classpath("com.android.tools.build:gradle:7.1.0")
classpath("com.aliucord:gradle:main-SNAPSHOT")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.6.10")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://maven.aliucord.com/snapshots")
}
}
fun Project.aliucord(
configuration: AliucordExtension.() -> Unit
) = extensions.getByName<AliucordExtension>("aliucord").configuration()
fun Project.android(
configuration: BaseExtension.() -> Unit
) = extensions.getByName<BaseExtension>("android").configuration()
subprojects {
apply(plugin = "com.android.library")
apply(plugin = "com.aliucord.gradle")
apply(plugin = "kotlin-android")
aliucord {
val baseGithubUrl = "https://raw.githubusercontent.com/X1nto/AliucordPlugins"
author("Xinto", 423915768191647755L)
updateUrl.set("$baseGithubUrl/builds/updater.json")
buildUrl.set("$baseGithubUrl/builds/%s.zip")
}
android {
compileSdkVersion(30)
defaultConfig {
minSdk = 24
targetSdk= 30
versionCode = 1
versionName = "1.0"
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
tasks.withType<KotlinCompile> {
kotlinOptions {
jvmTarget = "11"
freeCompilerArgs = freeCompilerArgs +
"-Xno-call-assertions" +
"-Xno-param-assertions" +
"-Xno-receiver-assertions"
}
}
}
dependencies {
"discord"("com.discord:discord:aliucord-SNAPSHOT")
"implementation"("com.aliucord:Aliucord:main-SNAPSHOT")
"implementation"("androidx.appcompat:appcompat:1.4.0")
"implementation"("com.google.android.material:material:1.5.0")
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}