Skip to content

Commit 9d9efad

Browse files
committed
enabled -> enable
1 parent 6b376dc commit 9d9efad

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
- Add `installGroupsOverride` parameter and `installGroups` property to Build Distribution SDK ([#5062](https://github.com/getsentry/sentry-java/pull/5062))
88
- Update Android targetSdk to API 36 (Android 16) ([#5016](https://github.com/getsentry/sentry-java/pull/5016))
9-
- Add AndroidManifest support for Spotlight configuration via `io.sentry.spotlight.enabled` and `io.sentry.spotlight.url` ([#5064](https://github.com/getsentry/sentry-java/pull/5064))
9+
- Add AndroidManifest support for Spotlight configuration via `io.sentry.spotlight.enable` and `io.sentry.spotlight.url` ([#5064](https://github.com/getsentry/sentry-java/pull/5064))
1010

1111
### Fixes
1212

sentry-android-core/src/main/java/io/sentry/android/core/ManifestMetadataReader.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ final class ManifestMetadataReader {
164164

165165
static final String FEEDBACK_SHOW_BRANDING = "io.sentry.feedback.show-branding";
166166

167-
static final String SPOTLIGHT_ENABLE = "io.sentry.spotlight.enabled";
167+
static final String SPOTLIGHT_ENABLE = "io.sentry.spotlight.enable";
168168

169169
static final String SPOTLIGHT_CONNECTION_URL = "io.sentry.spotlight.url";
170170

sentry-samples/sentry-samples-android/src/main/AndroidManifest.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -254,7 +254,7 @@
254254
android:name="io.sentry.session-replay.network-response-headers"
255255
android:value="X-Response-Time,X-Cache-Status,X-Test-Response" />
256256
<meta-data
257-
android:name="io.sentry.spotlight.enabled"
257+
android:name="io.sentry.spotlight.enable"
258258
android:value="true" />
259259
</application>
260260
</manifest>

0 commit comments

Comments
 (0)