I want to launch an Activity without having an Launchericon. So I removed the
<category android:name="android.intent.category.LAUNCHER" />
from the Manifest. Now my Icon does not show up in the Launcher, but I my App to start for the first time, after this the User does not need to open the App(so therefor no need for a launcher icon).
So my Question is: Is there a way to not show a launcher Icon, but start the App just for the first time?
Thank you.