我警告“应用程序无法通过Google搜索建立索引;请考虑添加至少一个带有ACTION-VIEW意向过滤器的活动。”

时间:2019-05-09 10:03:49

标签: java android

更新后,工作室中出现以下警告: “应用无法通过Google搜索建立索引;考虑添加ACTION-VIEW意向过滤器。有关更多详细信息,请参见问题说明。更多...(Ctrl + F1)» 如何解决?

我的Api是28。

这是我的清单:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.example.omen.serverforcofe" >

    <uses-permission android:name="android.permission.NFC"/>
    <uses-feature android:name="android.hardware.nfc" android:required="true" />

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme"
        >
        <activity
            android:name=".MainActivity"
            android:label="@string/app_name"
            android:launchMode="singleTop">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>

            <intent-filter>
                <action android:name="android.nfc.action.NDEF_DISCOVERED" />
                <category android:name="android.intent.category.DEFAULT" />
                <data  android:mimeType="text/plain"
                    />
            </intent-filter>

        </activity>
    </application>

</manifest>

1 个答案:

答案 0 :(得分:0)

<activity
    android:name=".MyActivity"
    android:screenOrientation="portrait"
    android:label="@string/app_name">

    <intent-filter>

       <action android:name="android.intent.action.VIEW" />

    </intent-filter>

</activity>

将此意图过滤器添加到app清单中声明的​​活动之一后,为我解决了这一问题。