Just wondering why this isn't working for me:
<activity android:name=".activities.MainDrawerActivity"
android:screenOrientation="portrait"
android:exported="true"
android:theme="@style/Theme.Sherlock.Light"
android:windowSoftInputMode="adjustNothing">
<intent-filter>
<data android:scheme="myapp" />
<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 I open my browser and type myapp://test nothing happens. Am I missing something?