0

My apk file generating multiple files after installation on the system as shown in screenshot. Please help me, what to do??

enter image description here

Dhaval Parmar
  • 18,812
  • 8
  • 82
  • 177

1 Answers1

0

Most likely this is one App having multiple activities marked as action=MAIN and category=LAUNCHER:

<activity android:name=".ExampleActivity1" android:icon="@drawable/app_icon">
<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".ExampleActivity2" android:icon="@drawable/app_icon">
<intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>

See also this SO question: Two main activities in AndroidManifest.xml

Community
  • 1
  • 1
Robert
  • 39,162
  • 17
  • 99
  • 152