• Mikkel Nygaard Ravn's avatar
    Support materializing Flutter module host app on iOS (#21276) · a600fe7f
    Mikkel Nygaard Ravn authored
    * Prototype
    
    * Fix paths to Flutter library resources
    
    * Invoke pod install as necessary for materialized modules
    
    * Add devicelab test for module use on iOS
    
    * Remove debug output
    
    * Rebase, reame materialize editable
    
    * Add devicelab test editable iOS host app
    
    * Removed add2app test section
    a600fe7f
main.m 207 Bytes
#import <UIKit/UIKit.h>
#import "AppDelegate.h"

int main(int argc, char * argv[]) {
    @autoreleasepool {
        return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
    }
}