アプリを開くには、どのように構成する必要があるのだろうかと思っていましたandroid-app://application.id
。
adb shell am start android-app://application.id
URI_ANDROID_APP_SCHEMEは文書化されているようには機能しないようです。market://
代わりに、Chrome と Firefox は私のアプリへのリンクのみを開きます。
Chromeの場合、スキームのみを説明しているドキュメントを見つけました。intent://
インテント フィルタにDEFAULT
andBROWSABLE
カテゴリが含まれている場合、 Firefoxで機能します。
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>