まずユーザーエージェントを検出し、それに従ってユーザーを別の場所に移動します。ここであなたのサイトに追加することができますし、電子メールでサイトのURLを与えることができる単純なJavaScriptコードです。この助けを願っています。
//Useragent detection from http://stackoverflow.com/questions/21741841/detecting-ios-android-operating-system
function getMobileOperatingSystem() {
var userAgent = navigator.userAgent || navigator.vendor || window.opera;
// Windows Phone must come first because its UA also contains "Android"
if (/windows phone/i.test(userAgent)) {
//Code here for windows phone.
}
if (/android/i.test(userAgent)) {
window.location = 'https://play.google.com/store/apps/details?id=YOUR_APPLICTION_ID';
}
// iOS detection from: http://stackoverflow.com/a/9039885/177710
if (/iPad|iPhone|iPod/.test(userAgent) && !window.MSStream) {
//Code here for itunes.
}
//Code to navigation for your website.
}
Androidのアプリケーションを開くには、Androidで特定のURIを実装する必要があります。その後、そのURIにユーザーをリダイレクトしてアプリケーションを開きます。
これは、私はuがbothtで、2つの異なるボタンを使用することをお勧めしたいあなたhttp://stackoverflow.com/questions/34942269/downloadmanager-illegalstateexception-creating-a-download-in-directory-downloads/34942270#34942270 –
役立つかもしれません彼はプレイストアとappstore。だからあなたは消費者がいるデバイスを検出する外部websidesとバイブルする必要はありません – Niqql