Pinned[Announcements]
Nativine JS Bridge commands reference guide
Here is a complete reference sheet of available Javascript commands to interact with native iOS and Android modules using the window.Nativine bridge.
1. Send Push Token Details
Retrieve the active OneSignal push registration token from the client:window.Nativine.getPushToken((token) => {
console.log("Device Push Token:", token);
});
2. Device Vitals Check
Check battery levels, app version, or screen dimensions:window.Nativine.getDeviceVitals((vitals) => {
console.log("OS Version:", vitals.osVersion);
});

