This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
generated from Aliucord/plugins-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.gradle.kts
83 lines (70 loc) · 2.23 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
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.0.4")
classpath("com.github.Aliucord:gradle:main-SNAPSHOT")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.30")
}
}
allprojects {
repositories {
google()
mavenCentral()
maven("https://maven.aliucord.com/snapshots")
maven("https://jitpack.io")
}
}
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/scrazzz/AliucordPlugins"
author("scruz", 794527403580981248L)
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"
}
}
}
dependencies {
val discord by configurations
val implementation by configurations
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.4.0")
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}