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
Merge origin/master into SDK-337-in-app-close-button-position
Resolved CHANGELOG.md conflict by keeping both the unreleased
in-app display mode entries and the 3.6.6 release entries.
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+8-1Lines changed: 8 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,10 @@ This project adheres to [Semantic Versioning](http://semver.org/).
11
11
-`FORCE_RESPECT_BOUNDS` — ensures in-app content never overlaps system bars, keeping UI elements like the close button always accessible.
12
12
13
13
### Changed
14
+
- Replaced the deprecated `AsyncTask`-based push notification handling with `WorkManager` for improved reliability and compatibility with modern Android versions. No action is required.
14
15
- In-app messages now match the host app's system bar behavior by default. Previously, fullscreen in-apps would always draw content behind the status bar, which could cause UI elements like the close button to be obscured. The new default (`FOLLOW_APP_LAYOUT`) detects whether your app uses edge-to-edge and matches that configuration.
15
16
16
-
### Migration guide
17
+
####Migration guide
17
18
**No action required for most apps.** The new default `FOLLOW_APP_LAYOUT` automatically adapts to your app's layout.
18
19
19
20
If you relied on the previous behavior where fullscreen in-apps drew content behind the status bar, you can restore it explicitly:
@@ -34,6 +35,12 @@ IterableConfig config = new IterableConfig.Builder()
34
35
.build();
35
36
```
36
37
38
+
## [3.6.6]
39
+
### Fixed
40
+
- Fixed push notifications killing the existing activity when opened
41
+
- Fixed in-app message crash caused by WebView creation issues
42
+
- Fixed `BROADCAST_CLOSE_SYSTEM_DIALOGS` permission error on Android 12+ by restricting usage to Android SDK 30 and below
43
+
37
44
## [3.6.5]
38
45
### Fixed
39
46
- Fixed IterableEmbeddedView not having an empty constructor and causing crashes
0 commit comments