Comment on page
Integrations
.Net, Cordova and CI
Supported by Pushlink team.
using Com.Pushlink.Android;
...
PushLink.Start(this, Resource.Drawable.Icon, "yourApiKey", "yourDeviceID");
Rename is needed!
After downloading, rename it from
PushLinkMono-5.5.3.dll
to PushLinkMono.dll
before adding it as .Net Assembly reference.//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
});
We don't provide support to community plugins.
Very useful to setup CI/CD
Last modified 2yr ago