Reputation: 261
I use Cordova for building an android application. so, When I built the apk file
with cordova build android --release
command, and copy that into the Android phone due to installing, unfortunately the application could not be installed and bellow error
is appear :
Instalation failed.
my phone android version
is 4.4.2
the application target is 15.
Thanks of everybody to help me.
Upvotes: 1
Views: 1345
Reputation: 6900
You need to sign your application first. You have to use the platforms/android/build/outputs/apk/android-release-unsigned.apk
and follow the Signing Your Applications howto of the official documentation.
Upvotes: 1