本文整理匯總了TypeScript中@ionic-native/app-version.AppVersion.getAppName方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript AppVersion.getAppName方法的具體用法?TypeScript AppVersion.getAppName怎麽用?TypeScript AppVersion.getAppName使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類@ionic-native/app-version.AppVersion
的用法示例。
在下文中一共展示了AppVersion.getAppName方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1:
this.platform.ready().then(() => {
if(this.platform.is('cordova')) {
this.av.getAppName().then((name) => {
this.appName = name;
});
this.av.getVersionNumber().then((version) => {
this.appVersion = version;
});
this.appRate.preferences.storeAppURL = {
ios: '1186113597',
android: 'market://details?id=com.scripture-golf.ldsscripturegolf',
windows: 'ms-windows-store://pdp/?ProductId=9wzdncrdnjbc'
};
}
});
示例2: ionViewDidLoad
ionViewDidLoad() {
this.appVersion.getAppName().then(v => {
this.appName = v;
});
this.appVersion.getPackageName().then(v => {
this.packageName = v;
});
this.appVersion.getVersionCode().then(v => {
this.versionCode = v;
});
this.appVersion.getVersionNumber().then(v => {
this.versionNumber = v;
});
}