File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
sentry-android-replay/src/main/java/io/sentry/android/replay/video Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1717- Session Replay: Fix masking read-only ` TextField ` Composables ([ #4362 ] ( https://github.com/getsentry/sentry-java/pull/4362 ) )
1818- Correctly capture Dialogs and non full-sized windows ([ #4354 ] ( https://github.com/getsentry/sentry-java/pull/4354 ) )
1919- Fix Session Replay masking for newer versions of Jetpack Compose (1.8+) ([ #4485 ] ( https://github.com/getsentry/sentry-java/pull/4485 ) )
20+ - Session Replay: Expand fix for crash on devices to all Unisoc/Spreadtrum chipsets ([ #4510 ] ( https://github.com/getsentry/sentry-java/pull/4510 ) )
2021
2122## 7.22.5
2223
Original file line number Diff line number Diff line change @@ -161,15 +161,15 @@ internal class SimpleVideoEncoder(
161161 * ---
162162 * Same for Motorola devices.
163163 * ---
164- * As for the T606, it's a Spreadtrum/Unisoc chipset and can be spread across various
165- * devices, so we have to check the SOC_MODEL property, as the manufacturer name might have
166- * changed.
164+ * As for the Spreadtrum/Unisoc chipset, it can be spread across various devices, so we have
165+ * to check the SOC_MANUFACTURER property, as the manufacturer name might have changed.
167166 * https://github.com/getsentry/sentry-android-gradle-plugin/issues/861#issuecomment-2867021256
168167 */
169168 val canvas = if (
170169 Build .MANUFACTURER .contains(" xiaomi" , ignoreCase = true ) ||
171170 Build .MANUFACTURER .contains(" motorola" , ignoreCase = true ) ||
172- SystemProperties .get(SystemProperties .Property .SOC_MODEL ).equals(" T606" , ignoreCase = true )
171+ SystemProperties .get(SystemProperties .Property .SOC_MANUFACTURER ).equals(" spreadtrum" , ignoreCase = true ) ||
172+ SystemProperties .get(SystemProperties .Property .SOC_MANUFACTURER ).equals(" unisoc" , ignoreCase = true )
173173 ) {
174174 surface?.lockCanvas(null )
175175 } else {
You can’t perform that action at this time.
0 commit comments