2020-06-08 22:14:06 +03:00
|
|
|
/*
|
|
|
|
* Version for React Native
|
|
|
|
* © 2020 YANDEX
|
|
|
|
* You may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
|
|
|
* https://yandex.com/legal/appmetrica_sdk_agreement/
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <CoreLocation/CoreLocation.h>
|
|
|
|
#import <YandexMobileMetrica/YandexMobileMetrica.h>
|
|
|
|
|
2021-01-21 09:27:28 +03:00
|
|
|
|
2020-06-08 22:14:06 +03:00
|
|
|
@interface AppMetricaUtils : NSObject
|
|
|
|
|
|
|
|
+ (YMMYandexMetricaConfiguration *)configurationForDictionary:(NSDictionary *)configDict;
|
2021-01-21 13:56:30 +03:00
|
|
|
+ (YMMYandexMetricaConfiguration *)configurationForUserProfile:(NSDictionary *)configDict;
|
2020-06-08 22:14:06 +03:00
|
|
|
+ (CLLocation *)locationForDictionary:(NSDictionary *)locationDict;
|
|
|
|
+ (NSString *)stringFromRequestDeviceIDError:(NSError *)error;
|
|
|
|
|
|
|
|
@end
|