Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
ready() {
console.log('Device from app: ', Device);
this.version = Device.version;
this.deviceModel = Device.model;
this.dplatform = Device.platform;
AppVersion.getVersionNumber().then((value) => {
this.appVersion = value;
console.log(value);
}, (error) => {
console.error(error);
})
AppVersion.getPackageName().then((value) => {
this.appPackageName = value;
console.log(value);
}, (error) => {
console.error(error);
})
AppVersion.getAppName().then((value) => {
this.appName = value;
console.log(value);
platform.ready().then(() => {
AppVersion.getVersionNumber().then(ver => {
this.appversion = ver;
}).catch(function(error) {
console.log(error);
});
});
}
constructor(private loginService: LoginService,
private keyboard: Keyboard, private analytics: AnalyticsService,
private toast: ToastService, private nav: NavController) {
this.analytics.trackView('Login');
AppVersion.getVersionNumber()
.then(
(version) => this.version = version,
(err) => console.log(err)
);
}
constructor(private viewCtrl: ViewController, private analytics: AnalyticsService) {
this.analytics.trackView('About-page');
AppVersion.getVersionNumber()
.then(
(version) => this.version = version,
(err) => console.log(err)
);
}
public ionViewLoaded(): void {
AppVersion.getVersionNumber().then(version => this.version = version);
this.preferences.getKey(HIDE_TRAJECTORY_KEY).then(value => this.hideTrajectory = !!value);
this.preferences.getKey(HIDE_OLD_BUSES_KEY).then(value => this.hideOldBuses = !!value);
}
"<br>App Version: " + version_number + "" +
"<br>Version Code: " + version_code);
}
AppVersion.getAppName().then((data) => {
_resolved_count++;
name = data;
output();
}, ()=>output());
AppVersion.getPackageName().then((data) => {
_resolved_count++;
package_name = data;
output();
}, ()=>output());
AppVersion.getVersionNumber().then(data=>{
_resolved_count++;
version_number = data;
output();
}, ()=>output());
AppVersion.getVersionCode().then(data=>{
_resolved_count++;
version_code = data;
output();
}, ()=>output());
}