AndroidManifest.xmlファイルレポートActivity supporting ACTION_VIEW is not set as BROWSABLEの解決方法
6714 ワード
AndroidManifestでxmlファイルにactivityを登録した場合、ラベルを入れたときに以下のエラーが発生しました:Activity supporting ACTION_VIEW is not set as BROWSABLE. ACTIONをサポートするという意味ですVIEWのActivityはBROWSABLEに設定されていません.誤報AndroidManifestxml:
解決方法:
問題解決!
読んでくれてありがとう.
...
<activity
android:name=".WXPageActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="android.intent.action.VIEW"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
<data android:scheme="file"/>
<data android:scheme="wxpage" />
</intent-filter>
</activity>
...
解決方法:
...
<activity
android:name=".WXPageActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<category android:name="android.intent.category.DEFAULT"/>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"/>
<data android:scheme="https"/>
<data android:scheme="file"/>
<data android:scheme="wxpage" />
</intent-filter>
</activity>
...
問題解決!
読んでくれてありがとう.