My apk file generating multiple files after installation on the system as shown in screenshot. Please help me, what to do??
Asked
Active
Viewed 72 times
0
-
I saw you run on a emulator, try to run on a real device to see if your problem still occurs – Lan Nguyen Jan 26 '16 at 07:45
-
3Please post your `build.gradle` file if you are using `Android Studio` – Mustansar Saeed Jan 26 '16 at 08:01
-
I think you have same app with 3 different code & package name otherwise its inpossible – Dhaval Parmar Jan 26 '16 at 08:16
-
Thanks guys, i got my answer. – Subhash Sagar Jan 26 '16 at 10:31
1 Answers
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