前提・実現したいこと
Androidデバイスで、特定のURLスキームを持ったURL(boogiewoogie://boogiewoogie.bubbleapps.io/?View=User)をタップすると特定のネイティブアプリが起動するようにしたい
発生している問題・エラーメッセージ
以下「該当のソースコード」を含むアプリをインストールしたデバイス(Pixel5)で”boogiewoogie://boogiewoogie.bubbleapps.io/?View=User"をタップしてもURLスキームが認識されない
net::ERR_UNKNOWN_URL_SCHEME
該当のソースコード
"AndroidManifest.xml"内に以下を記述。
<activity android:name="com.brommko.superwebview.MainActivity" <intent-filter> <action android:name="android.intent.action.VIEW" /> <category android:name="android.intent.category.DEFAULT" /> <category android:name="android.intent.category.BROWSABLE" /> <data android:scheme="boogiewoogie" android:host="boogiewoogie.bubbleapps.io" android:path="/"/> <data android:scheme="http" /> <data android:scheme="https" /> </intent-filter> </activity>
試したこと
スキーム名を以下のように"https"として、"https://boogiewoogie.bubbleapps.io/?View=User"をタップしても、Chromeで起動してしまう
<data android:scheme="https" android:host="boogiewoogie.bubbleapps.io" android:path="/"/>
補足情報(FW/ツールのバージョンなど)
iOSではすでに同じURLでアプリを起動することに成功しているのですが、Androidではできず。。。
皆様どうぞお力添えをおねがいします。。。!!!
検索用:Custom URL Scheme、Deep Link、ディープリンク、通知、アプリ起動
あなたの回答
tips
プレビュー