LoginSignup
3
1

More than 3 years have passed since last update.

App is not indexable by Google Search;...のワーニングを消す

Posted at

課題

AndroidManifest.xml を開くと、<application/> タグ全体に黄色のワーニングが出る。このままでも問題はないが消したい。

解決方法

タグ内に以下行を追加すると、ワーニング自体は消える。

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

修正例

<activity android:name=".view.splash.SplashActivity"
            android:screenOrientation="portrait"
            >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <action android:name="android.intent.action.VIEW"/>

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
</activity>

所感

このワーニングは下記のURLが参照先となっているが、これは、「Android App Links」についての説明が主になっており、これを使う予定がない人にとっては、あまり役に立たない。

参考

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1