URL がフィルター データと一致する場合、アプリケーションが起動する場合、URL のタップを処理するインテント フィルターがマニフェストにあります。
<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="http" android:host="*" port="8765" android:path="/mypath" />
</intent-filter>
スキーマが「http」の場合、インテント フィルターは機能しますが、スキーマを「https」に変更すると、インテント フィルターは何も実行せず、リンクがブラウザーに読み込まれ始めます。
ここで何が問題なのか誰か知っていますか?