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
@@ -87,7 +87,7 @@ This is because on iOS only the definitions for Bugsnag are added when comiling
87
87
88
88
To work around this, we need to tell the compiler that these symbols are find and will be there later. Doing it manually is a bit messy so you can just add our gradle plugin to handle it
89
89
```kotlin
90
-
id("co.touchlab.crashkios.bugsnaglink") version "x.y.z"
90
+
id("co.touchlab.crashkios.bugsnaglink") version "{{LATEST_GITHUB_VERSION}}"
Then disable caching in your `gradle.properties` file. We're currently working to update things to avoid this, for now
30
30
we need it to deal with iOS linking issues.
31
-
TODO: WHATS THE M1 ONE?
32
31
```
33
32
kotlin.native.cacheKind.iosX64=none
33
+
kotlin.native.cacheKind.iosSimulatorArm64=none
34
34
```
35
35
36
36
After a Gradle sync, make a call to `enableCrashlytics()` somewhere in your startup code for each app. This switches from the
@@ -75,7 +75,7 @@ This is because on iOS only the definitions for Crashlytics are added when comil
75
75
76
76
To workaround this, we need to tell the compiler that these symbols are find and will be there later. Doing it manually is a bit messy so you can just add our gradle plugin to handle it
77
77
```kotlin
78
-
id("co.touchlab.crashkios.crashlyticslink") version "x.y.z"
78
+
id("co.touchlab.crashkios.crashlyticslink") version "{{LATEST_GITHUB_VERSION}}"
0 commit comments