有没有办法在Android Studio的新应用程序中使用来自旧eclipse app / file.keystore的信息?

时间:2016-09-30 22:30:24

标签: android keystore

我在大约两年前,2014年在游戏商店上发布了一个应用程序。 使用Eclipse来完成它,它仍然在Play商店发布。 我刚刚找到一个旧apk的文件夹,file.keystore就在那里。 不要以为我有原始项目,因为我创建的计算机已经死了。 幸运的是,我将一些文件夹移到了我的新电脑上,找到了密钥库。

基本上我在Android Studio中创建了一个新的应用程序,并且想知道是否 它可以从旧的file.keystore中检索信息并使用它 在我的新Android Studio App / keystore中 - name.jks

我之前没有尝试过更新应用,也不知道如何做到正确 来自旧Eclipse file.keystore的信息并将其放入我的新Android Studio中 app或name.jks文件。可以吗?

我在Keystore Explorer中打开了旧的name.keyystore,它要我输入密码 经过几次尝试后我过去了,还有什么需要做的吗? 我需要什么信息?

有人这样做可以提供帮助吗?

提前致谢

1 个答案:

答案 0 :(得分:0)

只要您知道密钥库的密码,就应该这么做。您只需要设置Gradle对其进行签名(完整文档here)。

app/build.gradle

android {
    signingConfigs {
        release {
            storeFile file('../file.keystore')
            storePassword 'passwordHere'
            keyAlias 'aliasHere'
            keyPassword 'passwordHere'
        }
    }
}