New warnings in iOS 9: “all bitcode will be dropped”

前端 未结 8 2306
执笔经年
执笔经年 2020-11-22 16:49

I have this new warning about the Google Framework in my app:

(null): URGENT: all bitcode will be dropped because \'/Users/myname/Library/Mobile D

8条回答
  •  执念已碎
    2020-11-22 17:37

    This issue has been recently fixed (Nov 2010) by Google, see https://code.google.com/p/analytics-issues/issues/detail?id=671. But be aware that as a good fix it brings more bugs :)

    You will also have to follow the initialisation method listed here: https://developers.google.com/analytics/devguides/collection/ios/v2.

    The latest instructions are going to give you a headache because it references utilities not included in the pod. Below will fail with the cocoapod

    // Configure tracker from GoogleService-Info.plist.
    NSError *configureError;
    [[GGLContext sharedInstance] configureWithError:&configureError];
    NSAssert(!configureError, @"Error configuring Google services: %@", configureError);
    

提交回复
热议问题