当前位置:   article > 正文

Apple Unity Plugins 接入GameCenter 崩溃解决方案_unity ios gamecenter

unity ios gamecenter

问题

  • 调用 GKLocalPlayer.Local.FetchItems() 程序崩溃,报错:Thread 1: EXC_BAD_ACCESS (code=257, address=0x8000000000000002)
    在这里插入图片描述
  • 启动崩溃,报错:Library not loaded: @rpath/AppleCoreNative.framework/AppleCoreNative
    在这里插入图片描述

问题原因

苹果官方提供的库,直接编译后,会在调用 GKLocalPlayer.Local.FetchItems() 时崩溃。
https://github.com/apple/unityplugins

编译库的时候遇到Unity版本不匹配问题,我尝试了应该可以通过修改源码这里的Unity版本解决掉。但是即使编译出来的包也是无法使用的,可能会造成上面两种崩溃
在这里插入图片描述

解决方案

大神已经帮助我们找到问题了。
使用如下命令,解决掉了苹果插件的问题的Commit。
https://github.com/muZZkat/unityplugins

git clone https://github.com/dodgy-ltd/apple-unityplugins.git
cd apple-unityplugins
git remote add muzzkat https://github.com/muZZkat/unityplugins.git
git fetch muzzkat
git merge muzzkat/muzzkat/fix-fetch-items
  • 1
  • 2
  • 3
  • 4
  • 5

下载完源码后,根据苹果文档编译源码得到Unity插件
https://github.com/apple/unityplugins/blob/main/Documentation/Quickstart.md

这个大神已经提了PR,但是没有被合并。目前的方案就用上面的命令
在这里插入图片描述

解决方案来自网上
https://forum.unity.com/threads/apple-unity-plugins-crashing-on-authentication.1450414/
在这里插入图片描述

可直接使用的UnityPlugins

为了编译源码,防止版本不兼容,专门下载了 2020.3.33f1版本的Unity,现将编译后的插件提供在如下仓库,有需要可以直接使用。笔者项目使用的2022Unity,也是兼容的。
https://github.com/liuyongjiesail/AppleUnityPlugins

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/159147
推荐阅读
相关标签
  

闽ICP备14008679号