defined configuration for build variants

This commit is contained in:
Semyon Babushkin
2017-10-23 20:25:04 +03:00
parent b6b5acd823
commit b6ba66a283
38 changed files with 2563 additions and 1424 deletions

16
ios/develop/main.m Normal file
View File

@@ -0,0 +1,16 @@
//
// main.m
// develop
//
// Created by Ntrlab on 23/10/2017.
// Copyright © 2017 The Chromium Authors. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "AppDelegate.h"
int main(int argc, char * argv[]) {
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
}
}