R
R
ratatyq2016-07-26 16:00:48
Android
ratatyq, 2016-07-26 16:00:48

How to create icon for android app?

Hello, I can’t understand why the android application does not create an icon after installation, everything is compiled in the eclipse environment, it is also installed on android without problems, but after installation I can’t run it because there is no icon on the android desktop, this application is in the application manager. I am using the LibGdx library.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Andrey Myvrenik, 2016-07-26
@ratatyq

This happens when none of the Activities in AndroidManifest.xml has a corresponding intent-filter, Android does not know which activity to launch through the launcher. For example:

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

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question