2
0

Conditionally enable crash/analytics.

This commit is contained in:
Maarten Billemont
2013-08-25 15:38:38 -04:00
parent 3d3f08da9b
commit 2399156ee4
2 changed files with 17 additions and 3 deletions

View File

@@ -16,11 +16,17 @@
#import <Foundation/Foundation.h>
#import <CoreData/CoreData.h>
#import "TestFlight.h"
#ifdef CRASHLYTICS
#import <Crashlytics/Crashlytics.h>
#endif
#ifdef TESTFLIGHT
#import "TestFlight.h"
#endif
#ifdef LOCALYTICS
#import "LocalyticsSession.h"
#define LOCALYTICS 1
#define CRASHLYTICS 1
#endif
#import "MPTypes.h"
#import "MPiOSConfig.h"