1

I wrote a code for an app which got deleted somehow. The thing is that I have the keystore and everything alse like earlier apk's but not the code. Is it possible to write a new code with same package name and update it over the old app.? Or is it somehow possible to update the app when I dont have its code.?

1 Answers1

2

If you develop the app with same package name and sign it with the same keystore, and increment the version appropriately then app should work as an update to the existing one i think.
versionCode vs versionName in Android Manifest

Community
  • 1
  • 1
Pararth
  • 8,114
  • 4
  • 34
  • 51
  • Thanx. It worked. Actually I tried it, but earlier it was giving certificate mismatch. But after you answered, the same thing worked. :) :) –  Feb 07 '14 at 11:37
  • Thats nice, now you know what to do when something perfectly fine does not work : p ) . Sometimes just a clean, build, export signed app again works. – Pararth Feb 07 '14 at 11:39