Reputation: 51
I created a signed apk .
But , when I install it comes like this.
How can I solve this?
Upvotes: 0
Views: 3509
Reputation: 596
I had encountered the same problem and in my case it's because I don't generate a signed APK
To Generate Signed APK first you need keystore
file. You can create keystore with Android Studio with these steps :
Build
in Menu barGenerate Signed Bundle or APK
APK
or Android App Bundle
. Choose based on what you need, if you don't know what to choose just choose APK
Create New
button under key store path
textboxkeystore passowrd
and the second one is key password
. It' s different thing and save them on notepad or whatever so you don't forget itkeystore
fileAfter creating keystore
file now we begin to create the signed APK
keystore
file until you asked to choose keystore
choose existing
button
keystore password
and key password
release
Upvotes: 1
Reputation: 2247
Uninstall your app completely and install again
Settings -> Apps -> Click on your App.
In App info page at the action bar menu there will be an option " Uninstall for All users " click that.
Your app will be completely uninstalled and now you can try installing the new version.
Also In application check the unknown sources option
Upvotes: 1