カスタムMimeタイプを使用して構成ファイルを提供するWebサービスがあります。ユーザーがリンクをクリックしたときに、インテントフィルターを使用してアクティビティを起動したいと思います。すべてのAndroidバージョンで問題なく動作しますが、4.2(APIレベル17)では動作しません。これは私のManifest.xmlです
<activity android:name="activityName"
android:screenOrientation="nosensor"
android:theme="@style/Theme.Sherlock.NoActionBar"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:mimeType="application/vnd.xxx.yyy"/>
</intent-filter>
</activity>
何か案が?