linphone-iphone/LinphoneTester/main.m
Guillaume BIENKOWSKI 9de005abf8 Finally took the time to prepare a functioning basic Linphone tester for iOS.
No traces, audio is crashing, but the UI is here.
2014-05-28 17:13:02 +02:00

18 lines
291 B
Objective-C

//
// main.m
// LinphoneTester
//
// Created by guillaume on 28/05/2014.
//
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}