0

I guys I need some help. I made a app, but when I install, the program install other 3 Icons. Can you help me solving my problem ? I have seen this Android APK installs multiple icons / activities? but I don't know where is the "intent-filter" . Thanks

Community
  • 1
  • 1
  • Please [edit] your question to show [what you have tried so far](http://whathaveyoutried.com). You should include at least an outline (but preferably a [mcve]) of the code that you are having problems with, then we can try to help with the specific problem. You should also read [ask]. – Toby Speight Mar 09 '17 at 17:45
  • Intent filter tags are defined in the `AndroidManifest.xml` file of your app (and of libraries that you include in your project). – Christopher Orr Mar 09 '17 at 21:58

1 Answers1

0

In your manifest.xml make sure only your chosen launch activity has the MAIN/LAUNCHER intent filter. I suspect you're creating Activities using the Android Studio wizard and checking the launcher checkbox each time.

Fisk Debug
  • 156
  • 1
  • 5