Моя тестовая строка uri
http://test.host.com/path/test.html?key1=val1&key2=val2
И я делаю фильтр намерения в манифесте
а. схема и хост (это работает, но я не хочу)
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data
android:scheme="http"
android:host="test.host.com"
/>
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
В. A и путь (pathPrefix, pathPattern) (не работает)
<data
android:scheme="http"
android:host="test.host.com"
1. android:path="path/test.html" -> not worked (link to chrome broswer)
2. android:path="path" -> not worked (link to chrome broswer)
3. android:pathPrefix="path" -> not worked (link to chrome broswer)
4. android:pathPattern="user/invite.*" -> same (I do not know pattern)
/>
Я хочу начать свое приложение, когда только (путь/test.html),