diff --git a/docs/platforms/android/tracing/index.mdx b/docs/platforms/android/tracing/index.mdx
index aba9035010034..ffbd84848aa78 100644
--- a/docs/platforms/android/tracing/index.mdx
+++ b/docs/platforms/android/tracing/index.mdx
@@ -35,6 +35,44 @@ Test out tracing by starting and finishing a transaction, which you _must_ do so
While you're testing, set to `1.0`, as that ensures that every transaction will be sent to Sentry. Once testing is complete, you may want to set a lower value, or switch to using to selectively sample and filter your transactions, based on contextual data.
+## Standalone App Start Tracing
+
+
+
+This feature is experimental.
+
+
+
+By default, app start data is attached as spans to the first transaction in your app. Standalone app start tracing sends app start data as its own separate transaction instead. This gives you more accurate app start measurements, since they aren't dependent on another transaction being started.
+
+To enable standalone app start tracing, add the following to your `AndroidManifest.xml`:
+
+```xml {filename:AndroidManifest.xml}
+
+
+
+```
+
+Or, configure it manually in code:
+
+```java
+import io.sentry.android.core.SentryAndroid;
+
+SentryAndroid.init(this, options -> {
+ options.setEnableStandaloneAppStartTracing(true);
+});
+```
+
+```kotlin
+import io.sentry.android.core.SentryAndroid
+
+SentryAndroid.init(this) { options ->
+ options.isEnableStandaloneAppStartTracing = true
+}
+```
+
+For more details on app start instrumentation, see App Start Instrumentation.
+
## Next Steps
diff --git a/docs/platforms/apple/common/tracing/index.mdx b/docs/platforms/apple/common/tracing/index.mdx
index 194238b0b797e..b9c0c86e0f1dc 100644
--- a/docs/platforms/apple/common/tracing/index.mdx
+++ b/docs/platforms/apple/common/tracing/index.mdx
@@ -31,6 +31,32 @@ Test out tracing by starting and finishing a transaction, which you _must_ do so
While you're testing, set to `1.0`, as that ensures that every transaction will be sent to Sentry. Once testing is complete, you may want to set a lower value, or switch to using to selectively sample and filter your transactions, based on contextual data.
+## Standalone App Start Tracing
+
+
+
+This feature is experimental.
+
+
+
+By default, app start data is attached as spans to the first transaction in your app. Standalone app start tracing sends app start data as its own separate transaction instead. This gives you more accurate app start measurements, since they aren't dependent on another transaction being started.
+
+To enable standalone app start tracing, add the following to your SDK configuration:
+
+```swift
+SentrySDK.start { options in
+ options.experimental.enableStandaloneAppStartTracing = true
+}
+```
+
+```objc
+[SentrySDK startWithConfigureOptions:^(SentryOptions *options) {
+ options.experimental.enableStandaloneAppStartTracing = YES;
+}];
+```
+
+For more details on app start instrumentation, see App Start Tracing.
+
## Next Steps