Integrations
.Net, Cordova and CI
Official
Supported by Pushlink team.
.Net
using Com.Pushlink.Android;
...
PushLink.Start(this, Resource.Drawable.Icon, "yourApiKey", "yourDeviceID");
Cordova
//this new start API was introduced in pushlink-cordova-6.0.1
var successCallback = function success() { console.log('PushLink started successfully'); };
var errorCallback = function error() { console.log('An error occurred.'); };
PushLink.start({
apiKey: 'api-key',
deviceId: 'device-id',
successCallback: successCallback,
errorCallback: errorCallback
});
Pushlink official Cordova plugin on GitHub
Community
We don't provide support to community plugins.
Flutter
https://github.com/diogo-bruno/flutter-push-link (Community)
React Native
https://github.com/diogo-bruno/react-native-push-link (Community)
Gradle
https://github.com/PuzzelSolutions/gradle-pushlink-plugin (Community)
Last updated