Rishika Agrawal
Rishika Agrawal

Reputation: 1

App Icon Not Showing But App is Installed

android studio app icon doesnt appear in the home screen or app list but is present in setting in manage apps. I can force stop it or unistall it but not able to relaunch it.Please help me.

Manifest

<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".First">
        <intent-filter>
            <action android:name="android.intent.action.FIRST" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity android:name=".MainActivity" />
    <activity android:name=".Second"/>
    <activity android:name=".Team"/>
</application>

Upvotes: 0

Views: 143

Answers (2)

yatin deokar
yatin deokar

Reputation: 781

You have mentioned wrong <intent-filter>

Change it to

<intent-filter>

            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />

</intent-filter>

Upvotes: 0

Alex Khristo
Alex Khristo

Reputation: 487

Use

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

instead of

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

Upvotes: 1

Related Questions