我正在开发一个适用于iOS和安卓系统的应用程序,对于这个应用程序,我使用了来自distriqt的不同ANE (PushNotifications和Share)。PushNotifications和密钥验证工作正常,但在共享和使用相同密钥的情况下,我得到以下错误:
Your key was not able to be verified for the com.distriqt.Share native extension我还删除了check is Share is supported这一行
if (Share.isSupported) {
...
}因为它会生成另一个错误:
Error #3500: The extension context does not have a method with the name isSupported.发布于 2018-10-27 08:21:17
确保已生成包含共享扩展名的密钥。密钥不会自动适用于所有扩展,如果添加新扩展,则需要重新生成(更新)密钥。
查看您帐户中的应用程序页面。
请注意,您应该在github上的支持论坛上提出类似的问题。
https://stackoverflow.com/questions/53008330
复制相似问题