I am developing an Android application, and when I install the application on an Android phone, the application icon does not appear in the application section. But it appears in the application manager, and I can do the removal. After googling, some said that I needed to rebuild my project and make sure that the application icon in the resource was paintable. I have already tried this solution and the problem is still happening. The manifest file I created looks like this:
<application android:allowBackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/AppTheme"> <activity android:name=".MyActivity" android:label="@string/app_name" > <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> <action android:name="android.intent.action.view" /> <data android:scheme="geo" /> </intent-filter> </activity> </application>
source share