0

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?

Luuklag
  • 3,897
  • 11
  • 38
  • 57
  • try uninstalling old apk before installing new one – kelvin Mar 25 '21 at 12:40
  • 1
    Does 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 Answers1

0

Disable minifyEnable. then generate build

 buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
        }
    }
Patel Vijay
  • 222
  • 2
  • 3