Skip to content Skip to sidebar Skip to footer

Android Studio 3.0 Unsigned Apk Not Installing

After upgrading to android studio 3.0 the debug apk is saying App not istalled. The package appears to be corrupted

Solution 1:

Looks like we can not directly use the apk after running on the device from the build->output->apk folder.

After upgrading to android studio 3.0 you need to go to Build -> Build Apk(s) then copy the apk from build -> output -> apk -> debug

Like this -

enter image description here


Solution 2:

Fist Click On Build Icon on android studio after that click Build APK(s) then Generate APK the copy Apk. It is working perfact.


Solution 3:


Solution 4:

I needed to create a signed APK for it to install correctly.


Solution 5:

I have also faced the same problem after upgrading android studio to version 3.0! To solve this issue you need to disable instant run that can be found under File -> Settings -> Build,Execution,Deployment -> Instant Run. Now You need to re-generate a signed apk with both the signature versions enabled i.e V1 & V2 that can be found under Build -> Generate Signed APK Now try to install the signed apk, this time it should be installed perfectly :).


Post a Comment for "Android Studio 3.0 Unsigned Apk Not Installing"