generated from Aliucord/plugins-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.gradle.kts
75 lines (60 loc) · 2.21 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
import com.aliucord.gradle.AliucordExtension
import com.android.build.gradle.BaseExtension
buildscript {
repositories {
google()
mavenCentral()
// Aliucords Maven repo which contains our tools and dependencies
maven("https://maven.aliucord.com/snapshots")
// Shitpack which still contains some Aliucord dependencies for now. TODO: Remove
maven("https://jitpack.io")
}
dependencies {
classpath("com.android.tools.build:gradle:7.0.4")
// Aliucord gradle plugin which makes everything work and builds plugins
classpath("com.aliucord:gradle:main-SNAPSHOT")
}
}
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")
// Fill out with your info
aliucord {
author("Clienthax", 98355277182566400L)
updateUrl.set("https://raw.githubusercontent.com/clienthax/AliuPlugins/builds/updater.json")
buildUrl.set("https://raw.githubusercontent.com/clienthax/AliuPlugins/builds/%s.zip")
}
android {
compileSdkVersion(31)
defaultConfig {
minSdk = 24
targetSdk = 31
}
compileOptions {
sourceCompatibility = JavaVersion.VERSION_11
targetCompatibility = JavaVersion.VERSION_11
}
}
dependencies {
val discord by configurations
val implementation by configurations
// Stubs for all Discord classes
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")
implementation("androidx.constraintlayout:constraintlayout:2.1.2")
}
}
task<Delete>("clean") {
delete(rootProject.buildDir)
}