Skip to content

1.3.16

Compare
Choose a tag to compare
@evantk91 evantk91 released this 31 Aug 22:54
· 344 commits to master since this release
b63d1af

Updates

This release allows you to use projects hosted on Iterable's EU data center. If your project is hosted on Iterable's European data center (EUDC), configure the SDK to use Iterable's EU-based API endpoints:

const config = new IterableConfig();
// ... other configuration options ...
config.dataRegion = IterableDataRegion.EU;
Iterable.initialize('<YOUR_API_KEY>', config);

Fixed

  • Addressed push notification deep linking issues on Android where the app would restart instead of resuming the last activity upon being backgrounded.
  • Resolves an additional push notification problem on Android wherein the customActionHandler and urlHandler were not being invoked in specific scenarios, as documented in issue #470. (Credit to @tnortman-jabra for the report and the fix)