1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| //
| // AppDelegate.h
| // VoipTest
| //
| // Created by StevStark on 2020/11/10.
| //
|
| #import <UIKit/UIKit.h>
| #import "LinphoneManager.h"
| #import "VoipTest-Swift.h"
| #import <CallKit/CallKit.h>
|
|
| @interface AppDelegate : UIResponder <UIApplicationDelegate,CXProviderDelegate> {
| LinphoneAccountCreator *account_creator;
|
|
| }
| @property (nonatomic, strong) UIWindow* window;
|
|
| @end
|
|