Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How Do I Create A Certificate For My Android Market APK?

I want to upload my first APK/app to the Android Market, but I got this error (which did not lead me to the correct link when searched for in stackoverflow, by the way).

Market does not accept apks signed with the debug certificate. Create a new certificate that is valid for at least 50 years. Market requires that the certificate used to sign the apk be valid until at least October 22, 2033. Create a new certificate.

Though it turns out this question is similar, the guy just says "Oh, you reminded me of how to do it" without actually explaining. I've looked at the website referred to in the "answer", but here's my problem:

  • I don't know where my keytool tool is. The Android site is pretty vague; I don't see "keytool" of any sort in my ..\android-sdk-windows\tools directory.
  • I think I've done this before, but I wish I had a set of steps that is like "Open up a command prompt, navigate to the directory where keytool is, enter in command 'xyz -flagsforxyz', and then point to the keystore from the 'export release apk' option in Eclipse"... or something similar.

I hope you can tell that I've tried a few things already! I might just be overlooking something simple -- so it's time for the steps to be recorded in stackoverflow! Thanks for your help.

like image 313
Danny Avatar asked Oct 21 '10 08:10

Danny


People also ask

How do I get APK keystore?

In the menu bar, click Build > Generate Signed Bundle/APK. In the Generate Signed Bundle or APK dialog, select Android App Bundle or APK and click Next. Below the field for Key store path, click Create new. On the New Key Store window, provide the following information for your keystore and key, as shown in figure 2.

What is a signed APK?

A signed apk is an android package file that has been digitally singed with a certificate for which the developer holds the private key. When you are doing developing your application a special debug key is created by the dev tools.

How do I create an APK file for my Android app?

How to create an APK File for your Android App The first step you have to prepare your code for the Google Play Store. Go to Android Studio’s menu, select Build → Generate Signed APK. Create Signed APK dialog box appears.

How to install SSL certificate on Android device?

Now that you know everything there is to be known, let’s install your certificate on your android device. Follow the steps below for it: First, go to Settings Now go to Security > Install from Phone Storage/Install from SD Card

How to generate signed APK in Android Studio?

Go to Android Studio’s menu, select Build → Generate Signed APK. Create Signed APK dialog box appears. This dialog box has a drop-down list in which you choose one of your project’s segments.

Does market accept APKs signed with the debug certificate?

Market does not accept apks signed with the debug certificate. Create a new certificate that is valid for at least 50 years. Market requires that the certificate used to sign the apk be valid until at least October 22, 2033. Create a new certificate.


1 Answers

If you are using Eclipse for Development just right click on your project and click export. Now choose Android and then Export Android Application. In the next step confirm the project that you want to export. Then click next and now you should be able to select create new keystore. Now fill in the required fields and your should be able to sign your app. Be sure to make a backup of the keystore file and remember your password. Losing this will make it impossible to update your application.

If you are using the terminal to create a keystore and you have Java SDK installed there should be a program called keytool in /usr/bin (on a unix based system). On Windows the SDK should also come with the keytool but the install location may be different search for keytool.exe on your computer if keytool is not in your path already. With this tool you should be able to create a key in the following way:

keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -validity 10000 

Remember that once you lose your Certificate or it expires you will not be able to sign your application. Make sure that the expiration date is a long long time in the future.

like image 106
Janusz Avatar answered Oct 04 '22 16:10

Janusz