When I run my application "RUN" on the emulator it works. But when I manually install the APK I get an error message "Application not installed" any idea please?
Asked
Active
Viewed 92 times
0
-
try uninstalling old apk before installing new one – kelvin Mar 25 '21 at 12:40
-
1Does this answer your question? ['App not Installed' Error on Android](https://stackoverflow.com/questions/4226132/app-not-installed-error-on-android) (it could be any number of issues, but probably you have a previous version of the app installed) – Ryan M Mar 26 '21 at 06:29
1 Answers
0
Disable minifyEnable. then generate build
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}

Patel Vijay
- 222
- 2
- 3