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

Popular posts from this blog

asynchronous - C# WinSCP .NET assembly: How to upload multiple files asynchronously -

aws api gateway - SerializationException in posting new Records via Dynamodb Proxy Service in API -

asp.net - Problems sending emails from forum -