清单中的应用程序标记显示[Google搜索无法将应用程序编入索引;考虑使用ACTION-VIEW意图过滤器添加至少一个活动]

时间:2017-04-29 22:34:22

标签: android xml manifest

我尝试在service中添加manifest之类的同一行后,在我的应用中添加通知服务....标记Application告诉我这个问题我不会&#39 ;不知道这个意思是什么意思,

enter image description here

  <?xml version="1.0" encoding="utf-8"?>
  <manifest xmlns:android="http://schemas.android.com/apk/res/android"
  package="ddd">
  <uses-permission android:name="android.permission.INTERNET" />
  <uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
  <application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <meta-data
      android:name="com.google.firebase.messaging.default_notification_icon"
        android:resource="@mipmap/animal" />
    <meta-data
     android:name="com.google.firebase.messaging.default_notification_color"
        android:resource="@color/colorPrimary" />
    <activity
        android:name=".Splashscreen"
        android:configChanges="orientation|screenSize"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize"
        android:label="@string/app_name"
     android:theme="@android:style/Theme.Holo.Light.NoActionBar.Fullscreen">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:configChanges="orientation|screenSize"
        android:screenOrientation="portrait"
        android:windowSoftInputMode="adjustResize"
        android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <service
        android:name=".MyFirebaseMessagingService">
        <intent-filter>
            <action android:name="com.google.firebase.MESSAGING_EVENT"/>
        </intent-filter>
    </service>
  </application>
  </manifest>

1 个答案:

答案 0 :(得分:0)

  

您的解决方案在这里

您不能按照Google索引在多个活动代码中编写以下代码。

因此,从所有活动标签中删除此代码,然后在主活动标签上键入一次即可。

<intent-filter>
      <action android:name="android.intent.action.MAIN" />
      <category android:name="android.intent.category.DEFAULT" />
</intent-filter>