OutSystems Forge 日本語データベース

AppAvailability Plugin

※Forge全件データの日本語検索サービスをご利用になりたい場合は、こちらまでお問合せください。

Forge英文サイト

2018-01-05 1.0.0 Miguel 'Kelter' Antunes All All Plug-ins
プラグインを使用すると、アプリがインストールされているかどうかを確認できます。 github:https://github.com/ohh2ahh/AppAvailability
説明 このプラグインを使用すると、アプリがユーザーの端末にインストールされているかどうかを確認できます。 iOSではURIスキーム(例:twitter://)、AndroidではPackage Name(com.twitter.androidなど)が必要です。 Cordova / PhoneGap 3.0以降のコマンドラインインターフェイス対応 PhoneGapビルドで動作する サポートされているプラ​​ットフォーム iOS アンドロイド 重要:iOS 9およびiOS 10のURLスキームのホワイトリスト AppleはiOS 9でcanOpenURLメソッドを変更しました。URLスキームをチェックしているアプリケーションは、Appleに提出されたときにこれらのスキームを宣言する必要があります。 iOS 9のURLスキームの変更に関するクイックテイクの記事では、変更内容が詳細に説明されています。 ホワイトリストにURLスキームを追加 単にアプリケーションの.plist(通常は、platforms/ios/<appname>/<appname>-Info.plist)をエディタで開き、必要なスキームで次のコードを追加してください。 <key>LSApplicationQueriesSchemes</key> <array> <string>twitter</string> <string>whatsapp</string> </array> 注意: アプリの.plistファイルを編集するには、Edit Plist File Pluginを使用する必要があります。

[Overview]
Plugin allows you to check if an app is installed. github: https://github.com/ohh2ahh/AppAvailability
[Detail]
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. Ready for the Command-line Interface of Cordova / PhoneGap 3.0 and later Works with PhoneGap Build Supported Platforms iOS Android Important: iOS 9 and iOS 10 URL Scheme Whitelist Apple changed the canOpenURL method on iOS 9. Apps which are checking for URL Schemes have to declare these Schemes as it is submitted to Apple. The article Quick Take on iOS 9 URL Scheme Changes expains the changes in detail. Add URL Schemes to the Whitelist Simply open your app's .plist (usually platforms/ios/<appname>/<appname>-Info.plist) with an editor and add the following code with your needed Schemes. <key>LSApplicationQueriesSchemes</key> <array> <string>twitter</string> <string>whatsapp</string> </array> Note: To edit the your app's .plist file you should use the Edit Plist File Plugin.
戻る