| | |
| | | /// Collection of utilities to read network status information |
| | | @interface GULNetworkInfo : NSObject |
| | | |
| | | /// Returns the cellular mobile country code (mcc) if CoreTelephony is supported, otherwise nil |
| | | + (NSString *_Nullable)getNetworkMobileCountryCode; |
| | | |
| | | /// Returns the cellular mobile network code (mnc) if CoreTelephony is supported, otherwise nil |
| | | + (NSString *_Nullable)getNetworkMobileNetworkCode; |
| | | |
| | | /** |
| | | * Returns the formatted MccMnc if the inputs are valid, otherwise nil |
| | | * @param mcc The Mobile Country Code returned from `getNetworkMobileCountryCode` |
| | | * @param mnc The Mobile Network Code returned from `getNetworkMobileNetworkCode` |
| | | * @returns A string with the concatenated mccMnc if both inputs are valid, otherwise nil |
| | | */ |
| | | + (NSString *_Nullable)formatMcc:(NSString *_Nullable)mcc andMNC:(NSString *_Nullable)mnc; |
| | | |
| | | /// Returns an enum indicating the network type. The enum values should be easily transferrable to |
| | | /// the NetworkType value in android/play/playlog/proto/clientanalytics.proto. Right now this always |
| | | /// returns None on platforms other than iOS. This should be updated in the future to return Wi-Fi |