I run the application in the emulator it works successfully and the icon of the application is show in the emulator menu but when i try to run again that app from the emulator menu it can't allow me to run from that and display the Toast "Application is Not installed in your phone".
In the Image the red rounded is my application icon.
Corrupted storage, especially corrupted SD cards, is one of the most common reasons why Android app not installed error occurs. Unwanted data might contain elements that disturb the storage location, causing Android app can't install error.
Recently few users have reported about “App not installed” error message on their Android devices. Generally, it occurs when users try to install an APK that is not available in Google Play Store. Though you cannot say that it's a software or hardware issue but it completely depends on your device usage.
This can happen if you have your MainActivity
declared twice in your AndroidManifest.xml,
first as a launhcer
<activity android:name=".MyActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
and then just declared like:
<activity android:name=".MyActivity" />
So check for this and delete the second extra declaration.
Also, it happened to me once when I changed the launch activity. Reinstalling the application and restarting the phone make it work.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With