-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
settings.gradle.kts
52 lines (46 loc) · 1.43 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
pluginManagement {
repositories {
google()
gradlePluginPortal()
mavenCentral()
maven("https://maven.pkg.jetbrains.space/public/p/compose/dev")
}
}
dependencyResolutionManagement {
repositories {
mavenCentral()
mavenLocal()
google()
maven("https://androidx.dev/storage/compose-compiler/repository/")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/dev/")
}
}
rootProject.name = "sentry-kotlin-multiplatform-sdk"
include(":sentry-kotlin-multiplatform")
includeBuild("sentry-kotlin-multiplatform-gradle-plugin")
/*
Simple KMP App with targets:
- Android
- iOS with SwiftUI and SPM
- JVM Desktop with Jetpack Compose
*/
include("sentry-samples:kmp-app-spm:shared")
include("sentry-samples:kmp-app-spm:androidApp")
include("sentry-samples:kmp-app-spm:desktopApp")
/*
Simple KMP App with targets:
- Android
- iOS with SwiftUI and Cocoapods
- JVM Desktop with Jetpack Compose
*/
include("sentry-samples:kmp-app-cocoapods:shared")
include("sentry-samples:kmp-app-cocoapods:androidApp")
include("sentry-samples:kmp-app-cocoapods:desktopApp")
/*
KMP App with MVVM and Dependency Injection with Koin:
- Android with Jetpack Compose
- iOS with SwiftUI and SPM
*/
// This is currently disabled because Koin does not support Kotlin 1.9.21 yet
// include("sentry-samples:kmp-app-mvvm-di:shared")
// include("sentry-samples:kmp-app-mvvm-di:androidApp")