[SDK] [iOS] Release v1.1.2.0
by ReadMe APIGitHub release
Integration guide
Changelog:
- Getter for
deviceId
- Soft opt-out
- Always show notification alert, even if in foreground
- Deep linking
GitHub release
Integration guide
Changelog:
deviceId
GitHub release
Integration guide
Changelog:
updateInstallation
button actionUpgrading:
The WonderPushService
entry in your AndroidManifest.xml
must be updated to include the new <intent-filter>
node.
<!-- Required to properly handle deep links and notifications in foreground -->
<service
android:name="com.wonderpush.sdk.WonderPushService"
android:enabled="true"
android:exported="false"
android:label="Push Notification service">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="wonderpush" />
</intent-filter>
</service>
GitHub release
Integration guide
Changelog:
Upgrading:
Please add the following function to your AppDelegate
:
- (void)application:(UIApplication *)app didFailToRegisterForRemoteNotificationsWithError:(NSError *)error
{
[WonderPush didFailToRegisterForRemoteNotificationsWithError:error];
// You may appreciate the following log during development :-)
NSLog(@"Error: %@", error);
}
GitHub release
Integration guide
Changelog:
GitHub release
Integration guide
Changelog:
link
button actionrating
button actiontrackEvent
button actionmethod
button actionisReady()
returns whether the INTENT_INITIALIZED
has already been sent out@NOTIFICATION_ACTION
automatic event tracks notification answers and user interactionsApplication
class