mirror of
https://github.com/flutter/flutter.git
synced 2026-02-20 02:29:02 +08:00
* Added unit tests for the ios code. * Moved the tests to live next to the source. * Added mocking library. * Fixed formatting and removed third_party from the format check. * fixed formatting 2 * Removed ocmock from third_party. * Added ocmock to third_party, compile from source. * removed ocmock from license checking * updated licenses_flutter * updated tool_signature
13 lines
363 B
Objective-C
13 lines
363 B
Objective-C
// Copyright 2013 The Flutter Authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "AppDelegate.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
|
|
}
|
|
}
|