mirror of
https://github.com/danielsogl/awesome-cordova-plugins.git
synced 2025-02-22 01:19:36 +08:00
47 lines
1.3 KiB
TypeScript
47 lines
1.3 KiB
TypeScript
import { Cordova, Plugin } from './plugin';
|
|
|
|
/**
|
|
* @name App Availability
|
|
* @description
|
|
* This plugin allows you to check if an app is installed on the user's device. It requires an URI Scheme (e.g. twitter://) on iOS or a Package Name (e.g com.twitter.android) on Android.
|
|
*
|
|
* Requires Cordova plugin: cordova-plugin-appavailability. For more info, please see the [AppAvailability plugin docs](https://github.com/ohh2ahh/AppAvailability).
|
|
*
|
|
* @usage
|
|
* ```typescript
|
|
* import { AppAvailability } from 'ionic-native';
|
|
*
|
|
*
|
|
* let app;
|
|
*
|
|
* if (device.platform === 'iOS') {
|
|
* app = 'twitter://';
|
|
* } else if (device.platform === 'Android') {
|
|
* app = 'com.twitter.android';
|
|
* }
|
|
*
|
|
* AppAvailability.check(app)
|
|
* .then(
|
|
* (yes: string) => console.log(app + ' is available'),
|
|
* (no: string) => console.log(app + ' is NOT available')
|
|
* );
|
|
* ```
|
|
*/
|
|
@Plugin({
|
|
plugin: 'cordova-plugin-appavailability',
|
|
pluginRef: 'appAvailability',
|
|
repo: 'https://github.com/ohh2ahh/AppAvailability',
|
|
platforms: ['Android', 'iOS']
|
|
})
|
|
export class AppAvailability {
|
|
|
|
/**
|
|
* Checks if an app is available on device
|
|
* @param {string} app Package name on android, or URI scheme on iOS
|
|
* @returns {Promise<boolean>}
|
|
*/
|
|
@Cordova()
|
|
static check(app: string): Promise<boolean> { return; }
|
|
|
|
}
|