A plugin to check for the availability of other apps on the device.
npm install @nativescript/appavailability
import { available } from '@nativescript/appavailability';
//or
import { availableSync } from '@nativescript/appavailability';// examples of what to pass:
// - for iOS: "maps://", "twitter://", "fb://"
// - for Android: "com.facebook.katana"
available('twitter://').then((avail: boolean) => {
console.log('App available? ' + avail);
});Once you have confirmed that the app is installed on the device, you probably want to launch it. Here's a snippet that opens the mobile Twitter app and falls back to the website if it's not installed.
import { available } from '@nativescript/appavailability';
import { Utils } from '@nativescript/core';
const twitterScheme = 'twitter://';
available(twitterScheme).then((available) => {
if (available) {
// open in the app
Utils.openUrl(twitterScheme + (isIOS ? '/user?screen_name=' : 'user?user_id=') + 'eddyverbruggen');
} else {
// open in the default browser
Utils.openUrl('https://twitter.com/eddyverbruggen');
}
});And a more concise, synchronous way would be:
import { availableSync } from '@nativescript/appavailability';
import { Utils } from '@nativescript/core';
if (availableSync('twitter://')) {
Utils.openUrl('twitter://' + (isIOS ? '/user?screen_name=' : 'user?user_id=') + 'eddyverbruggen');
} else {
Utils.openUrl('https://twitter.com/eddyverbruggen');
}Android:simply search the Play Store and use the id in the URL. For Twitter this iscom.twitter.androidbecause the URL ishttps://play.google.com/store/apps/details?id=com.twitter.android.iOS:this one is a bit harder but this site should cover most apps you're interested in. When in doubt you can always fire up Safari on your iPhone and type for example'twitter://'in the address bar if the app launches you're good.
To get useful results on iOS 9+ you need to whitelist the URL Scheme you're querying in the application's Info.plist.
For example, to query for twitter://, whatsapp:// and fb://, edit app/App_ResourcesiOS/Info.plist as follows:
<key>LSApplicationQueriesSchemes</key>
<array>
<string>fb</string>
<string>twitter</string>
<string>whatsapp</string>
</array>| Methods | Return Type | Description |
|---|---|---|
available(packageName:string) |
Promise<boolean> |
Asynchronously checks if the app with the specified packageName is installed on the device. |
availableSync(packageName:string) |
boolean |
Synchronously checks if the app with the specified packageName is installed on the device. |
Apache License Version 2.0