This is a Cordova application that Najva_cordova_plugin implemented in it.
If you want test Najva Push Notification Service in Cordova application you should:
-
Clone this project and rename package name of it
-
Register this app after login in najva panel.(to register any app, its package name must be unique!)
-
After register najva panel gives you websiteId,apiKey which is specific to your app
-
Go to
config.xml
file and put this parameters looks like the following then save it.
<widget xmlns:android="http://schemas.android.com/apk/res/android">
<platform name="android">
<config-file target="AndroidManifest.xml" parent="/manifest/application">
<meta-data
android:name="com.najva.sdk.metadata.API_KEY"
android:value="[YOUR_API_KEY_GOES_HERE]" />
<meta-data
android:name="com.najva.sdk.metadata.WEBSITE_ID"
android:value="[YOUR_WEBSITE_ID_GOES_HERE]" />
</config-file>
</platform>
</widget>
then go to www/js/index.js
and add the fallowing code in onDeviceReady
function.
window.najva.init(function(success){},function(error){});
- Now you can run application and send notification from your panel to it!