I m getting this error on the latest release of BraintreeDropIn, I really don t get it since based on the patch notes, this should ve been addressed already, I have already tried cleaning derived data, restarting, it is still the same. Have any else experienced this too?
/Pods/BraintreeDropIn/Sources/BraintreeDropIn/BTVaultManagementViewController.m:103:42 setNetworkActivityIndicatorVisible: is deprecated: first deprecated in iOS 13.0 - Provide a custom network activity UI in your app if desired.
if (@available(iOS 13, *)) {
// The network activity indicator no longer appears on status bars for iOS 13+
} else {
[UIApplication.sharedApplication setNetworkActivityIndicatorVisible:YES];
}
[self.apiClient fetchPaymentMethodNonces:YES completion:^(NSArray<BTPaymentMethodNonce *> *paymentMethodNonces, NSError *error) {
if (@available(iOS 13, *)) {
// The network activity indicator no longer appears on status bars for iOS 13+
} else {
[UIApplication.sharedApplication setNetworkActivityIndicatorVisible:NO];
}