Reputation: 259
I am working on J2ME project.i am facing one problem regarding sign to MIDlet.please provide me step-by-step info how to sign MIDlet in J2ME and how to generate KeyStore. i try myself to create Keystore then it give error.
Error:-
javax.microedition.pki.CertificateException: Certificate was signed using an unsupported algorithm
Thanks in advance
Upvotes: 1
Views: 307
Reputation: 1920
Signing a MIDlet only makes sense if you use a certificate from Thawte or Verisign. In other words, you need to pay $300 each year to have your MIDlet signed. You cannot sign a MIDlet with your own certificate. At least, if you can, it won't actually help you. Your app will still give the security popups like "App wants to access Internet. Allow this?" and so on.
Upvotes: 3