I'm developing a phonegap app with UrbanAirship
push notification feature. I'm getting pushId for registration. In iOS
, it gives same pushId at all reinstallation of app but In Android
, pushId changed at all reinstallation.
I need same pushId at all reinstallation.
Plugin java file using this line of code :-
String pushID = PushManager.shared().getAPID();
I'm trying to use getChannelId() method but it gives error that no method found .
What can I do to achieve this required information.
Please give me some guidelines.