• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

c# - Unity中的Apple idfa通过插件

[复制链接]
菜鸟教程小白 发表于 2022-12-13 12:13:48 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我从另一个堆栈溢出答案中借用了这段代码:

example.mm

const char* getIdfa()
{
    if([[ASIdentifierManager sharedManager] isAdvertisingTrackingEnabled])
    {
        NSString * idfa = [[[ASIdentifierManager sharedManager] advertisingIdentifier] UUIDString];
        //return (const char*)[idfa UTF8String]; // ##### malloc error I uncomment this line #####
    }
    return nil;
}

iOSplugin.cs

#if UNITY_IOS
    [DllImport("__Internal")]
    public static extern string getIdfa();
#endif

可能影响问题的 Xcode build设置: 项目格式:兼容xcode 3.1 Obj-C 自动引用计数:是的

如果我取消注释这一行:

return (const char*)[fdsa UTF8String];

然后我收到以下错误:

(531,0x19e9ef000) malloc: *** error for object 0x1357d44e1: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug

有一些对名为 cocoaToMonoString 的函数的引用,它应该可以解决这个问题,但我找不到任何关于它的示例或文档。

如何将 Xcode 中的字符串返回到 Unity?



Best Answer-推荐答案


只需两美分的贡献。

现在您可以使用 Application.RequestAdvertisingIdentifierAsync 获得 IDFA(或 android 的 GAID)。 :

Application.RequestAdvertisingIdentifierAsync(
        (string advertisingId, bool trackingEnabled, string error) =>
            Debug.Log("advertisingId " + advertisingId + " " + trackingEnabled + " " + error)
);

此外,如果当前平台不支持广告标识符,则该方法返回一个 bool 值,表示成功时为 true;如果当前平台不支持广告标识符,则返回 false。

关于c# - Unity中的Apple idfa通过插件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34193282/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap