App Launch Detection
Function to Detect App Launch and Trigger Actions
window.WTN.appFirstLoad().then(function(value){
console.log(value)
});import { appFirstLoad } from "webtonative"
appFirstLoad().then((value) => {
console.log(value)
});Last updated