菜鸟教程小白 发表于 2022-12-13 02:18:41

ios - Firebase 性能在第一次调用 NSURLSession 时使应用程序崩溃


                                            <p><p>我刚刚将 Firebase 性能添加到我的主要是 Obj-C 并具有 Firebase(核心 + 分析 + 消息传递 + 配置)我在文档中读到:</p>

<blockquote>
<p>Performance Monitoring does not support network requests made using
the NSURLConnection class.</p>
</blockquote>

<p>但出乎意料的是应用程序在第一次调用 NSURL 时崩溃*
例如我正在使用一个名为“Harpy”的库,它在 AppStore 中检查应用程序的新版本,并在此处崩溃:</p>

<pre><code>NSURLSession *session = ; // &lt;--- Crashes here
NSURLSessionDataTask *task = [session
      dataTaskWithRequest:request
      completionHandler:^(NSData *data, NSURLResponse *response, NSError *error) {
            if ( &gt; 0 &amp;&amp; !error) { // Success
                ;
            }
      }
];
</code></pre>

<p>我真的看不到任何有用的异常,但是线程以:</p>

<pre><code>Thread 1 Queue : com.google.FPRNSURLSessionInstrumentation (serial)
</code></pre></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>所以上面的问题与 Firebase 本身没有直接关系,实际上是 Firebase 性能和 Crittercism 之间的冲突,解决方案是禁用 Crittercism 对 NSURLSession 的监控,如下所示:</p>

<pre><code>CrittercismConfig *config = ;
config.monitorNSURLSession = false;
;
.firstObject forKey:@&#34;deviceLanguage&#34;];
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - Firebase 性能在第一次调用 NSURLSession 时使应用程序崩溃,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/45266241/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/45266241/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - Firebase 性能在第一次调用 NSURLSession 时使应用程序崩溃