2017-03-09 15:26:28 +00:00
|
|
|
#ifndef RNFirebaseAnalytics_h
|
|
|
|
#define RNFirebaseAnalytics_h
|
2017-08-11 15:07:32 +00:00
|
|
|
#import <Foundation/Foundation.h>
|
2017-03-09 15:26:28 +00:00
|
|
|
|
2017-08-11 15:07:32 +00:00
|
|
|
#if __has_include(<FirebaseAnalytics/FIRAnalytics.h>)
|
2017-05-05 08:46:22 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
2017-03-09 15:26:28 +00:00
|
|
|
|
|
|
|
@interface RNFirebaseAnalytics : NSObject <RCTBridgeModule> {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2017-08-11 15:07:32 +00:00
|
|
|
#else
|
|
|
|
@interface RNFirebaseAnalytics : NSObject
|
|
|
|
@end
|
|
|
|
#endif
|
|
|
|
|
2017-03-09 15:26:28 +00:00
|
|
|
#endif
|