Initialisation from plugin template.

This commit is contained in:
Aloïs Deniel
2018-01-04 06:46:03 +01:00
parent 388d89cace
commit e6c43ec60b
84 changed files with 2102 additions and 31 deletions
+9
View File
@@ -0,0 +1,9 @@
#import <UIKit/UIKit.h>
#import <Flutter/Flutter.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}