Android 从 Apportable 切换到 Cocos2d-x 后无法安装应用

Android app can't install after switching from Apportable to Cocos2d-x


最近我已经从使用 Apportable 切换到 Cocos2d-x 但不幸的是,当我尝试更新我的应用程序时它说

App not installed

另外 Google Play 游戏服务向我显示警告

The application is incorrectly configured. Check that the package name and signing certificate match the client ID created in Developer Console...

但是我的应用程序已使用发布密钥库正确签名,并且客户端 ID 正确。我还检查了最新发布版本的证书指纹是否与最新版本中的证书指纹匹配并且它们匹配。

唯一的区别是 META-INF 文件夹中的文件名。 Apportable apk 有 CERT.RSA 和 CERT.SF 文件,但 Cocos2d-x 有 MYKEY.RSA 和 MYKEY.SF

你能告诉我我做错了什么吗?

我终于解决了这个问题。
我改变了:

<uses-feature android:glEsVersion="0x00020000" />

至:

<uses-feature android:name="android.hardware.touchscreen" android:required="true"/>
<uses-feature android:glEsVersion="0x20000" android:required="true" />

现在一切正常。