Click here to Skip to main content
15,884,298 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi everyone,

I'm working on android project right now, and facing a problem about signing .apk with existing .RSA file.

Well, here's the file that I need to include when my .apk is in final stage(signed and ready to release)
- test.MF
- test.RSA
- test.SF

As far as I tried, I did these step :
- Creating my keystore
keytool.exe -genkey -alias test.keystore -keyalg RSA -dname "cn=test,ou=test, o=test, L=PARIS, ST=PARIS, c=FR" -validity 21900 -keystore test.keystore

- Signing my .apk
%JAVA_HOME%\bin\jarsigner.exe -keystore test.keystore -internalsf keys\test.SF -storepass 123456 my_apk.apk


But how do I include my test.RSA, test.MF, and test.SF ?

many thanks
Posted

1 solution

Personally I just do it all from Eclipse, if you take a look at App Signing[^] all options are covered.

/Darren
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900