Android - Launcher activity multiple intent filters -
i have following activity declared in manifest file activity launcher activity
<activity android:name=".dashboard" android:screenorientation="portrait"> <intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> <intent-filter> <data android:path="/page" android:host="www.example.com" android:scheme="http" /> <action android:name="android.intent.action.view" /> <category android:name="android.intent.category.default" /> <category android:name="android.intent.category.browsable" /> </intent-filter> </activity>
when open http://www.example.com/page app doesn't launch
please help
Comments
Post a Comment