-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathsettings.gradle.kts
43 lines (38 loc) · 1.13 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
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")