generated from Kashif-E/KMPTemplate
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathbuild.gradle.kts
66 lines (54 loc) · 1.74 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
import com.android.build.gradle.internal.crash.afterEvaluate
allprojects {
repositories {
google()
gradlePluginPortal()
mavenLocal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven {
url = uri("https://maven.pkg.github.com/kashif-e/simple-paging")
credentials {
username = project.findProperty("gpr.user") as String?
password = project.findProperty("gpr.key") as String?
}
}
}
subprojects {
afterEvaluate {project->
if (project.hasProperty("android")) {
project.extensions.findByName("android")?.let { androidExtension ->
val android = androidExtension as com.android.build.gradle.BaseExtension
if (android.namespace == null) {
android.namespace = project.group.toString()
}
}
}
}
}
}
buildscript {
repositories {
google()
gradlePluginPortal()
mavenLocal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven {
url = uri("https://maven.pkg.github.com/kashif-e/simple-paging")
credentials {
username = project.findProperty("gpr.user") as String?
password = project.findProperty("gpr.key") as String?
}
}
}
dependencies {
classpath(libs.androidGradle)
classpath(libs.composeGradle)
classpath(libs.kotlinGradle)
classpath((kotlin("serialization", version = "1.8.20")))
}
}
plugins {
alias(libs.plugins.compose.compiler) apply false
}