Skip to content

Commit 1d16e8a

Browse files
committed
bump cocoa version to 8.4.0 and use attachViewHierarchy on Android
1 parent 081925d commit 1d16e8a

File tree

6 files changed

+15
-14
lines changed

6 files changed

+15
-14
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ cocoapods {
5959
// ...
6060
6161
// Make sure Sentry Cocoa in your project matches this version
62-
pod("Sentry", "~> 8.3.0")
62+
pod("Sentry", "~> 8.4.0")
6363
6464
framework {
6565
baseName = "shared"

buildSrc/src/main/java/Config.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ object Config {
2727
val sentryAndroid = "io.sentry:sentry-android:$sentryJavaVersion"
2828
val sentryJava = "io.sentry:sentry:$sentryJavaVersion"
2929

30-
val sentryCocoaVersion = "8.3.0"
30+
val sentryCocoaVersion = "8.4.0"
3131
val sentryCocoa = "Sentry"
3232
}
3333

sentry-kotlin-multiplatform/sentry_kotlin_multiplatform.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Pod::Spec.new do |spec|
1212
spec.osx.deployment_target = '10.13'
1313
spec.tvos.deployment_target = '11.0'
1414
spec.watchos.deployment_target = '4.0'
15-
spec.dependency 'Sentry', '~> 8.3.0'
15+
spec.dependency 'Sentry', '~> 8.4.0'
1616

1717
spec.pod_target_xcconfig = {
1818
'KOTLIN_PROJECT_PATH' => ':sentry-kotlin-multiplatform',

sentry-kotlin-multiplatform/src/androidMain/kotlin/io/sentry/kotlin/multiplatform/extensions/SentryAndroidOptionsExtensions.kt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ internal fun SentryOptions.toAndroidSentryOptionsCallback(): (SentryAndroidOptio
1010

1111
// Apply Android specific options
1212
it.isAttachScreenshot = this.attachScreenshot
13+
it.isAttachViewHierarchy = this.attachViewHierarchy
1314

1415
it.sdkVersion?.name = this.sdk?.name ?: BuildKonfig.SENTRY_KMP_ANDROID_SDK_NAME
1516
it.sdkVersion?.version = this.sdk?.version ?: BuildKonfig.VERSION_NAME

sentry-samples/kmp-app/iosApp/Podfile.lock

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
PODS:
2-
- Sentry (8.3.0):
3-
- Sentry/Core (= 8.3.0)
4-
- SentryPrivate (= 8.3.0)
5-
- Sentry/Core (8.3.0):
6-
- SentryPrivate (= 8.3.0)
7-
- SentryPrivate (8.3.0)
2+
- Sentry (8.4.0):
3+
- Sentry/Core (= 8.4.0)
4+
- SentryPrivate (= 8.4.0)
5+
- Sentry/Core (8.4.0):
6+
- SentryPrivate (= 8.4.0)
7+
- SentryPrivate (8.4.0)
88
- shared (1.0):
9-
- Sentry (~> 8.3.0)
9+
- Sentry (~> 8.4.0)
1010

1111
DEPENDENCIES:
1212
- shared (from `../shared`)
@@ -21,9 +21,9 @@ EXTERNAL SOURCES:
2121
:path: "../shared"
2222

2323
SPEC CHECKSUMS:
24-
Sentry: 757565eb01e2a6ef6b26e897e4e47e8213e12f06
25-
SentryPrivate: 668d6ce46835769b32e61dc8b5c78ef0b6cdcef8
26-
shared: 49bda994dff3c1b7e7761338877dd48f2f0447a7
24+
Sentry: 16d46dd5ca10e7f4469a2611805a3de123188add
25+
SentryPrivate: 2bb4f8d9ff558b25ac70b66c1dedc58a7c43630b
26+
shared: 0dca2e824df822c0e0186869c320e4ba675f23ed
2727

2828
PODFILE CHECKSUM: f282da88f39e69507b0a255187c8a6b644477756
2929

sentry-samples/kmp-app/shared/shared.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Pod::Spec.new do |spec|
99
spec.vendored_frameworks = 'build/cocoapods/framework/shared.framework'
1010
spec.libraries = 'c++'
1111
spec.ios.deployment_target = '14.1'
12-
spec.dependency 'Sentry', '~> 8.3.0'
12+
spec.dependency 'Sentry', '~> 8.4.0'
1313

1414
spec.pod_target_xcconfig = {
1515
'KOTLIN_PROJECT_PATH' => ':sentry-samples:kmp-app:shared',

0 commit comments

Comments
 (0)