mirror of
https://github.com/caoer/analytics-ios-integration-firebase.git
synced 2026-04-28 21:05:38 +08:00
18 lines
345 B
Objective-C
18 lines
345 B
Objective-C
//
|
|
// main.m
|
|
// Segment-Firebase
|
|
//
|
|
// Created by wcjohnson11 on 07/25/2016.
|
|
// Copyright (c) 2016 wcjohnson11. All rights reserved.
|
|
//
|
|
|
|
@import UIKit;
|
|
#import "SEGAppDelegate.h"
|
|
|
|
int main(int argc, char * argv[])
|
|
{
|
|
@autoreleasepool {
|
|
return UIApplicationMain(argc, argv, nil, NSStringFromClass([SEGAppDelegate class]));
|
|
}
|
|
}
|