generated from utsmannn/compose-multiplatform-ios-android-template
-
Notifications
You must be signed in to change notification settings - Fork 3
/
settings.gradle.kts
64 lines (57 loc) · 2.09 KB
/
settings.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
import org.gradle.internal.impldep.org.jsoup.safety.Safelist.basic
rootProject.name = "TokoBola"
pluginManagement {
repositories {
gradlePluginPortal()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
google()
}
plugins {
val kotlinVersion = extra["kotlin.version"] as String
val agpVersion = extra["agp.version"] as String
val composeVersion = extra["compose.version"] as String
kotlin("jvm").version(kotlinVersion)
kotlin("multiplatform").version(kotlinVersion)
kotlin("android").version(kotlinVersion)
id("com.android.application").version(agpVersion)
id("com.android.library").version(agpVersion)
id("org.jetbrains.compose").version(composeVersion)
id("dev.icerock.mobile.multiplatform-resources").version("0.23.0")
id("com.codingfeline.buildkonfig").version("0.13.3")
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.PREFER_SETTINGS)
repositories {
google()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
maven {
url = uri("https://api.mapbox.com/downloads/v2/releases/maven")
authentication {
create<BasicAuthentication>("basic")
}
credentials {
// Do not change the username below.
// This should always be `mapbox` (not your username).
username = "mapbox"
// Use the secret token you stored in gradle.properties as the password
password = "sk.eyJ1Ijoia3VjaW5nYXBlcyIsImEiOiJjbGxmdnVtbGIwemdqM2txaHZtam5teGxiIn0.4AlEjvqBWJgaYOElmi5bxA"
}
}
}
}
include(":androidApp")
include(":shared")
include(":resources")
include(":libraries:core")
include(":libraries:common")
include(":libraries:network")
include(":libraries:api")
include(":libraries:database")
include(":libraries:location")
include(":features:home")
include(":features:details")
include(":features:explore")
include(":features:wishlist")
include(":features:cart")