Asfos22
Asfos22

Reputation: 319

Flutter release apk is not installing on device

I have release apk with signed keys but it's not installing on android devices, its shows this message "The apk failed to install Error: Could not parse error string" but debugging mode apk, the app works fine.

release command

flutter build apk --release.

I did follow this question to solve it, hope it helps someone.

Upvotes: 6

Views: 10560

Answers (2)

Nehemie KOFFI
Nehemie KOFFI

Reputation: 1395

Please check available disk space on the target Android Device before doing any actions. For most of cases it is a due to insuffisant space on the device.

Upvotes: 0

failspy
failspy

Reputation: 156

If you're trying to install a signed APK after using a debugging mode APK, Android will detect differences in signature, and refuse to install it.

Make sure you've uninstalled the unsigned debugging APK first from the device, and try to install again.

Upvotes: 13

Related Questions