在 Play 商店中更新未签名的 android apk
Update unsigned android apk in play store
我们在 Play 商店发布了一个应用,开发者给了我们 未签名 应用。我们如何在没有签名的情况下继续更新现有应用程序?
是否可以在我们签名后使用未签名的 apk 更新现有应用程序?
您不能上传到 Google 存储未签名且不符合要求的 APK。请您的开发人员为您提供已签名且符合要求的 APK。或者您可以要求他们向您提供 key
,这样您就可以使用 key
.
自己签名并对齐
https://developer.android.com/studio/publish/app-signing.html
https://developer.android.com/studio/command-line/zipalign.html
无法在 Google Play 上发布未签名的 APK。
向您的开发者询问
1) 源代码,
2) KeyStor 文件[.jks 文件]
3)密钥库密码,
4) 密钥别名密码
5) 使用开发者提供的 keyStore 文件生成新的签名 APK
6) 生成新的签名 APK 后,您可以使用新的 APK 更新现有的 google play 应用程序。
我们在 Play 商店发布了一个应用,开发者给了我们 未签名 应用。我们如何在没有签名的情况下继续更新现有应用程序? 是否可以在我们签名后使用未签名的 apk 更新现有应用程序?
您不能上传到 Google 存储未签名且不符合要求的 APK。请您的开发人员为您提供已签名且符合要求的 APK。或者您可以要求他们向您提供 key
,这样您就可以使用 key
.
https://developer.android.com/studio/publish/app-signing.html https://developer.android.com/studio/command-line/zipalign.html
无法在 Google Play 上发布未签名的 APK。
向您的开发者询问
1) 源代码,
2) KeyStor 文件[.jks 文件]
3)密钥库密码,
4) 密钥别名密码
5) 使用开发者提供的 keyStore 文件生成新的签名 APK
6) 生成新的签名 APK 后,您可以使用新的 APK 更新现有的 google play 应用程序。