You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* fix build errors and test features
* bump android and jvm sentry versions and migrate to new android sourceset layout
* add default value for attachment contentType
* change android min sdk
* change xcode selection during build
* update readme
* manage versions through config
* review improvements
* remove unnecessary contentType
Copy file name to clipboardExpand all lines: README.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -60,7 +60,7 @@ cocoapods {
60
60
// ...
61
61
62
62
// Make sure Sentry Cocoa in your project matches this version
63
-
pod("Sentry", "~> 7.21.0")
63
+
pod("Sentry", "~> 8.2.0")
64
64
65
65
framework {
66
66
baseName = "shared"
@@ -176,7 +176,7 @@ class AppDelegate: NSObject, UIApplicationDelegate {
176
176
177
177
## Debug Symbols for Apple targets
178
178
179
-
A dSYM upload is required for Sentry to symbolicate your crash logs for viewing. The symbolication process unscrambles Apple’s crash logs to reveal the function, variables, file names, and line numbers of the crash. The dSYM file can be uploaded through the sentry-cli tool or through a Fastlane action. Please visit our [sentry.io guide](https://docs.sentry.io/clients/cocoa/dsym/) to get started on uploading debug symbols.
179
+
A dSYM upload is required for Sentry to symbolicate your crash logs for viewing. The symbolication process unscrambles Apple’s crash logs to reveal the function, variables, file names, and line numbers of the crash. The dSYM file can be uploaded through the sentry-cli tool or through a Fastlane action. Please visit our [sentry.io guide](https://docs.sentry.io/platforms/apple/dsym/) to get started on uploading debug symbols.
Copy file name to clipboardExpand all lines: gradle.properties
+8-4Lines changed: 8 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,20 +1,23 @@
1
1
# Kotlin
2
-
kotlin.version=1.7.10
2
+
kotlin.version=1.8.0
3
3
kotlin.incremental.multiplatform=true
4
4
kotlin.code.style=official
5
5
kotlin.mpp.stability.nowarn=true
6
6
android.useAndroidX=true
7
7
8
8
# Jetpack Compose
9
-
compose.version=1.2.0-alpha01-dev753
9
+
compose.version=1.3.1-rc01
10
+
11
+
# JVM target when compiling Kotlin
12
+
jvm.version=1.8
10
13
11
14
# Release information
12
15
versionName=0.0.1
13
16
14
17
# Increase memory for in-process compiler execution.
15
18
org.gradle.jvmargs=-Xmx3g
16
19
17
-
#because of: Please try to disable compiler caches and rerun the build. To disable compiler caches, add the following line to the gradle.properties file in the project's root directory
20
+
#Because of: Please try to disable compiler caches and rerun the build. To disable compiler caches, add the following line to the gradle.properties file in the project's root directory
Copy file name to clipboardExpand all lines: sentry-kotlin-multiplatform/src/commonAppleMain/kotlin/io/sentry/kotlin/multiplatform/extensions/SentryOptionsExtensions.kt
+3-1Lines changed: 3 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,9 @@ internal fun CocoaSentryOptions.applyCocoaBaseOptions(options: SentryOptions) {
0 commit comments