Sign Android APK with a certificate that expires further in to the future(使用将来会过期的证书签署 Android APK)
问题描述
我已经使用 phonegap 构建了一个 android 应用程序.我现在正在尝试在 Play 商店中获取此内容,但不断收到以下错误
I have built an android app using phonegap build. I am now trying to get this on the play store but keep getting the following error
You uploaded an APK signed with a certificate that expires too soon. You need to sign your APK with a certificate that expires farther into the future
我已经使用 java jdk1.8.0 keytool 创建了签名密钥,并且我已经使用了这个代码
I have created the signing key with java jdk1.8.0 keytool and I have used this code
keytool.exe -genkey -v -keystore release.keystore -alias TicTacToe -keyalg RSA -keysize 2048 -validity 10000
我不明白.据我所知,我将日期设置为 10,000 天后,这应该足够了吗?
I don't understand. As far as I can tell I am setting the date 10,000 days from now which should be plenty?
推荐答案
设置有效期大于50年.
Set expiration to be greater than 50 years.
-validity 20000
这篇关于使用将来会过期的证书签署 Android APK的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:使用将来会过期的证书签署 Android APK


基础教程推荐
- 固定小数的Android Money Input 2022-01-01
- “让"到底是怎么回事?关键字在 Swift 中的作用? 2022-01-01
- 如何使用 YouTube API V3? 2022-01-01
- LocationClient 与 LocationManager 2022-01-01
- 在 iOS 上默认是 char 签名还是 unsigned? 2022-01-01
- Android ViewPager:在 ViewPager 中更新屏幕外但缓存的片段 2022-01-01
- 使用 Ryzen 处理器同时运行 WSL2 和 Android Studio 2022-01-01
- Android文本颜色不会改变颜色 2022-01-01
- :hover 状态不会在 iOS 上结束 2022-01-01
- 如何使 UINavigationBar 背景透明? 2022-01-01