starter icon doesnt appear with other apps -android studio -



starter icon doesnt appear with other apps -android studio -

after install app on device, runs without problems, when want access app home menu apps, icon doesnt appear, aplication manager , app installed, read others responses cant figure out, heres manifies file.

<?xml version="1.0" encoding="utf-8"?><manifest xmlns:android="http://schemas.android.com/apk/res/android" package="majad.sunshine.app"><application android:allowbackup="true" android:icon="@drawable/ic_launcher" android:label="@string/app_name" android:theme="@style/apptheme" > <activity android:name=".mainactivity" 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> <activity android:name=".detailactivity" android:label="@string/title_activity_detail" android:parentactivityname=".mainactivity" > <meta-data android:name="android.support.parent_activity" android:value="majad.sunshine.app.mainactivity" /> </activity> <activity android:name=".settingsactivity" android:label="@string/title_activity_settings" android:parentactivityname=".mainactivity" > <meta-data android:name="android.support.parent_activity" android:value="majad.sunshine.app.mainactivity" /> </activity> </application> <uses-permission android:name="android.permission.internet" /></manifest>

ill appreciate help please

you missed intent filter tag

<intent-filter> <action android:name="android.intent.action.main" /> <category android:name="android.intent.category.launcher" /> </intent-filter> <intent-filter> <action android:name="android.intent.action.view"/> <data android:scheme="geo"/> </intent-filter>

this solve problem.you giving 2 actions in same intent filter causing problem.

android icons

Comments

Popular posts from this blog

java - How to set log4j.defaultInitOverride property to false in jboss server 6 -

c - GStreamer 1.0 1.4.5 RTSP Example Server sends 503 Service unavailable -

Using ajax with sonata admin list view pagination -