Android Eclipse & Android Studio App Release 签名

Android Eclipse & Android Studio App Release signed

我有一个多年前在市场上发布的应用程序。它最初是在 Eclipse 中完成的。现在我正在 Android 工作室中制作新版本的应用程序。我仍然有它签名时使用的原始密钥和密码。

我可以用我在 Android studio 中制作的新应用程序更新在 eclipse 中制作的已经发布的应用程序,只要我使用与它签名的相同的密钥吗?

谢谢

是的,您需要使用相同的密钥和相同的程序包名称。

Can i update the already published app made in eclipse with the new one I'm making in Android studio, as long as i use the same key it was signed with?

可以。

参考文档 here

If your app used a debug certificate in Eclipse ADT, Android Studio continues to reference that certificate. Otherwise, the debug configuration uses the Android Studio generated debug keystore, with a known password and a default key with a known password located in $HOME/.android/debug.keystore. The debug build type is set to use this debug SigningConfig automatically when you run or debug your project from Android Studio.

In release mode, Android Studio applies the release certificate used in Eclipse ADT. If no release certificate was located during the import process, add the release signing configuration to the build.gradle file or use the Build > Generate Signed APK menu option to open the Generate Signed APK Wizard. For more information about signing your app, see Signing Your Applications.