Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Eclipse Android plugins to build a project, but I am getting this error in the console window:

[2010-02-03 10:31:14 - androidVNC]Error generating final archive:

Debug certificate expired on 1/30/10 2:35 PM!

How do I fix it?

share|improve this question

13 Answers

up vote 1677 down vote accepted

Delete your debug certificate under ~/.android/debug.keystore on Linux and Mac OS X; the directory is something like %USERPROFILE%/.androidon Windows.

The Eclipse plugin should then generate a new certificate when you next try to build a debug package. You may need to clean and then build to generate the certificate.

share|improve this answer
8  
On Windows I had to delete the debug.keystore and make some changes to get a new compile going. I created a new test project, and the new debug.keystore was generated. – Tomas Jun 8 '10 at 13:37
94  
It will also be re-generated for the current project if you 'clean' the project (go to Project -> Clean...) – adamnfish Jul 24 '10 at 17:50
15  
@adamnfish: it didn't work for me on mac and eclipse. – rjoshi Dec 14 '10 at 1:03
9  
There is now a bug tracker issue requesting this to be fixed. Please vote for it. code.google.com/p/android/issues/detail?id=15370 – Manfred Moser Mar 9 '11 at 19:52
47  
Clean did not fix the problem for me, I needed to rm ~/.android/debug.keystore by hand. – James Moore May 2 '11 at 18:26
show 21 more comments

Upon installation, the Android SDK generates a "debug" signing certificate for you in a keystore called debug.keystore. The Eclipse plug-in uses this certificate to sign each application build that is generated.

Unfortunately a debug certificate is only valid for 365 days. To generate a new one you must delete the existing debug.keystore file. Its location is platform dependent - you can find it in Preferences - Android - Build - Default debug keystore.

share|improve this answer
10  
A change to make the default 30 years was accepted on 6 Apr 2011: review.source.android.com/#change,22128 – James Moore May 2 '11 at 18:55
If you delete your debug.keystore, how would you update your application? – user739375 Jul 21 '11 at 8:39
3  
@user739375, the debug.keystore is only used for debugging, a separate certificate is used for "production". – Nullable Jan 1 '12 at 1:43
8  
So now we have to remember what to do in 30 years! ;-) – kaze Jan 24 '12 at 17:38
1  
@kaze, there's a google for that ;) – ariefbayu May 28 '12 at 21:05

It's a pain to have to delete all your development .apk files, because the new certificate doesn't match so you can't upgrade them in all your AVDs. You have to get another development MAP-API key as well. There's another solution.

You can create your own debug certificate in debug.keystore with whatever expiration you want. Do this in the .android folder under your HOME directory:

keytool -genkey -v -keystore debug.keystore -alias androiddebugkey -storepass android -keypass android -keyalg RSA -validity 14000

keytool.exe can be found in the JDK bin folder (e.g. C:\Program Files\Java\jdk1.6.0_31\bin\ on Windows).

ADT sets the first and last name on the certificate as "Android Debug", the organizational unit as "Android" and the two-letter country code as "US". You can leave the organization, city, and state values as "Unknown". This example uses a validity of 14000 days. You can use whatever value you like.

share|improve this answer
2  
I like this because it provides a more long-term fix until the SDK provides a better way to handle the expiring cert. – CleverCoder Apr 5 '11 at 16:36
9  
I like this because I don't need to use eclipse at all. – MattK Jun 30 '11 at 1:50
I'm assuming that this is to be typed under the command line. If so, I get a "keytool is not recognized" error. Can you further explain this method? – Ted Betz Nov 18 '11 at 19:17
1  
keytool can be found in your JDK's bin directory (any OS). I usually add this bin directory to my PATH so the above would work from anywhere. You could either find your JDK bin directory and add it to your PATH, or you could put the full pathname to keytool on the command line. – Dave MacLean Nov 26 '11 at 20:55
As other commenters have pointed out, Google seems to have extended the default duration of the debug certificate so deleting the debug.keystore file and doing clean/build is much easier. – Dave MacLean Nov 26 '11 at 21:06
show 1 more comment

On Vista, this worked:

  1. DOS: del c:\user\dad\.android\debug.keystore

  2. ECLIPSE: In Project, Clean the project. Close Eclipse. Re-open Eclipse.

  3. ECLIPSE: Start the Emulator. Remove the Application from the emulator.

You are good to go.

I was pretty worried when I say that error, but I fixed it from reading here and playing around for 10 minutes.

share|improve this answer
3  
+1 for suggesting the deletion of "debug.keystore". In my computer, deleting that file and "Cleaning" the Project was enough (i.e. did not have to reboot eclipse). Thanks. – MyNameIsZero Mar 4 '11 at 21:44

In Windows 7 it is at the path

C:\Users\[username]\.android
  • goto this path and remove debug.keystore
  • clean and build your project.
share|improve this answer
  • WINDOWS

Delete: debug.keystore located in C:\Documents and Settings\[user].android

  • Windows 7 go to C:\Users[username].android and delete debug.keystore file.

Restart Eclipse and automatically you will have another keystore

  • MAC

Delete your keystore located in ~/.android/debug.keystore then restart Eclipse.

share|improve this answer

If certificate expires in the middle of project debugging you must do manual uninstall:

Please execute 'adb uninstall <package_name>' in a shell.
share|improve this answer
1  
Please, add comment to answer before you downvote! – Solata Dec 16 '11 at 7:59

On Ubuntu, this worked:

I went to home/username/.android and I renamed keystore.debug to keystoreold.debug. I then closed Eclipse, started Eclipse, and SDK created new certificate keystore.debug in that folder.

You then have to uninstall/reinstall apps you installed via USB Debugging or an unsigned APK ("unsigned" APK = signed with debug certificate).

share|improve this answer

On a Mac, open the console (current user's directory should open), cd ".android" ("ls" to validate debug.keystore is there). Finally "rm debug.keystore" to remove the file.

share|improve this answer

I had this problem couple of weeks ago. I first tried the troubleshooting on the Android developer site, but without luck. After that I reinstalled the Android SDK, which solved my problem.

share|improve this answer

H-m-m-m. Interesting how so many people have had slightly different experiences with this. I remember the days when this was considered a sign that the software was not ready for release, and the team would actually fix it BEFORE users started seeing these problems:(

My own experience was just a little different. I had already tried Project>Clean, but still got the same build failure. Then I deleted the debug.keystore (under .android) just as the first answer said. Still got the same problem. Then I did a clean again, and wonder of wonders, it worked!

Now don't get me wrong, I am glad that I got it working thanks to the hints in this thread. But clearly clean isn't working right, and how did it find an expired key after I deleted the keystore??? Clearly something is wrong with Eclipse or the ADT -- not so sure which.

share|improve this answer
Eclipse tends to cache files, so a clean/refresh is required sometimes to let it know that the file has changed on disk. – navjotk Apr 3 '12 at 15:08

The Android SDK generates a "debug" signing certificate for you in a keystore called debug.keystore.The Eclipse plug-in uses this certificate to sign each application build that is generated.

Unfortunately a debug certificate is only valid for 365 days. To generate a new one, you must delete the existing debug.keystore file. Its location is platform dependent - you can find it in Preferences -> Android -> Build -> *Default debug keystore.

If you are using Windows, follow the steps below.

DOS: del c:\user\dad.android\debug.keystore

Eclipse: In Project, Clean the project. Close Eclipse. Re-open Eclipse.

Eclipse: Start the Emulator. Remove the Application from the emulator.

If you are using Linux or Mac, follow the steps below.

Manually delete debug.keystore from the .android folder.

You can find the .android folder like this: home/username/.android

Note: the default .android file will be hidden.

So click on the places menu. Under select home folder. Under click on view, under click show hidden files and then the .android folder will be visible.

Delete debug.keystore from the .android folder.

Then clean your project. Now Android will generate a new .android folder file.

share|improve this answer

For windows xp go to C:\Documents and Settings\%userprofile%.android and delete debug.keystore file , restart the eclipse and now your project get build without error.

Example path: C:\Documents and Settings\raja.ap.android\

http://www.androiddevelopment.org/tag/keytool/

share|improve this answer

protected by Community Aug 2 '11 at 7:13

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.