gpt4 book ai didi

android - iOS 版 Google Analytics 仅在 WiFi 可用时发送跟踪,否则发送至缓存

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:46:10 25 4
gpt4 key购买 nike

我在这里搜索了类似的帖子,但没有找到答案,所以如果我没有找到,请将此标记为重复。所以我的问题是:我在 Android 和 iOS 上都使用 Google Analytics,但都面临同样的问题。我希望 GA 仅在 WiFi 可用时发送跟踪信息,这可以通过检查网络状态轻松完成。但现在我希望 GA 在没有 WiFi 可用时缓存事件/屏幕,并在 Wifi 可用时稍后发送。

我在文档中发现只有在没有互联网可用时才写入缓存,所以我想问的是:即使有3G可用,有没有办法强制GA缓存跟踪? SDK中没有找到这样的方法。

请帮忙。

谢谢。

最佳答案

要在 iOS 应用程序中实现此功能,您可能需要下载 this Apple sample或者(我更喜欢)this handy github project

如果你选择第二种方式,你只需要像这样在启动时创建和配置Reachability类实例

// disable automatic sending of statistics 
[GAI sharedInstance].dispatchInterval = 0;

Reachability* reach = [Reachability reachabilityForLocalWiFi];
reach.reachableBlock = ^(Reachability *reach){
[GAI sharedInstance].dispatchInterval = 20;

// you also may send cached statistics right on WiFi appear
[[GAI sharedInstance] dispatch];
};

reach.unreachableBlock = ^(Reachability *reach) {
// disable automatic upload, this will force GAI to cache all hits
// until you call dispatch or set dispatchInterval
[GAI sharedInstance].dispatchInterval = 0;
};

关于android - iOS 版 Google Analytics 仅在 WiFi 可用时发送跟踪,否则发送至缓存,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18131395/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com