1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // BUEnvironment.h
| // BUFoundation
| //
| // Created by bytedance on 2020/10/29.
| // Copyright © 2020 Union. All rights reserved.
| //
|
| #ifndef BUEnvironment_h
| #define BUEnvironment_h
|
| #import <Foundation/Foundation.h>
| #import <CoreTelephony/CTTelephonyNetworkInfo.h>
|
| CTTelephonyNetworkInfo *BUDefaultTelephonyNetworkInfo(void);
|
| #endif /* BUEnvironment_h */
|
|