[Pods] Updates AppCenter to 4.2.0

Allows compiling AltStore for iOS simulator from an ARM Mac.
This commit is contained in:
Riley Testut
2021-07-21 13:20:14 -07:00
parent ae0aa7dc65
commit ec1eaf00eb
365 changed files with 16447 additions and 1089 deletions

View File

@@ -90,9 +90,9 @@ extension AnalyticsManager
{
func start()
{
MSAppCenter.start(appCenterAppSecret, withServices:[
MSAnalytics.self,
MSCrashes.self
AppCenter.start(withAppSecret: appCenterAppSecret, services: [
Analytics.self,
Crashes.self
])
}
@@ -102,6 +102,6 @@ extension AnalyticsManager
properties[item.key.rawValue] = item.value
}
MSAnalytics.trackEvent(event.name, withProperties: properties)
Analytics.trackEvent(event.name, withProperties: properties)
}
}