Skip to content

Commit d54777c

Browse files
runningcodeclaude
andauthored
feat(snapshot): Default includePrivatePreviews to true (#1138)
Co-authored-by: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 2c5f9fe commit d54777c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plugin-build/src/main/kotlin/io/sentry/android/gradle/extensions/SnapshotsExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ open class SnapshotsExtension @Inject constructor(objects: ObjectFactory) {
1212
val enabled: Property<Boolean> = objects.property(Boolean::class.java).convention(false)
1313

1414
val includePrivatePreviews: Property<Boolean> =
15-
objects.property(Boolean::class.java).convention(false)
15+
objects.property(Boolean::class.java).convention(true)
1616

1717
val packageTrees: ListProperty<String> =
1818
objects.listProperty(String::class.java).convention(emptyList())

plugin-build/src/main/kotlin/io/sentry/android/gradle/snapshot/metadata/SentrySnapshotMetadataExtension.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,5 +12,5 @@ import org.jetbrains.annotations.ApiStatus
1212
abstract class SentrySnapshotMetadataExtension(objects: ObjectFactory) {
1313

1414
val includePrivatePreviews: Property<Boolean> =
15-
objects.property(Boolean::class.java).convention(false)
15+
objects.property(Boolean::class.java).convention(true)
1616
}

0 commit comments

Comments
 (0)