Default keystore file does not exist?

You must be providing the wrong path to the debug.keystore file. Follow these steps to get the correct path and complete your command: In eclipse, click the Window menu -> Preferences -> Expand Android -> Build In the right panel, look for: Default debug keystore: Select the entire box next to the label specified in … Read more

How to import a .cer certificate into a java keystore?

If you want to authenticate you need the private key – there is no other option. A certificate is a public key with extra properties (like company name, country,…) that is signed by some Certificate authority that guarantees that the attached properties are true. .CER files are certificates and don’t have the private key. The private … Read more