Forum Thread: Android Hacking Kali Linux

5 Responses

Have you allowed your phone to install applications from unknown sources ?

You need to generate a Signed APK... Most likely your app is not signed here.
To Sign it manually use these 4 commands:

keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore APPNAME.apk aliasname
jarsigner -verify -verbose -certs APPNAME.apk
zipalign -v 4 APPNAME.apk NEWAPPNAME.apk

Where APPNAME is your generated file from Metasploit and NEWAPPNAME is the name of the signed file you will generate.

install zipalin..

sudo apt-get install zipalin

or search it in synaptic package manager or any other package manager u use..

once u signed the apk and run it on android. inform me of the error..

i am getting

"an existing package by the same name with a conflicting signature is already installed.."

do inform me in DM what happens..

Share Your Thoughts

  • Hot
  • Active