Swiftgram/Classes/BITHockeyBaseManagerPrivate.h
Andreas Linde 9b8f51fe5f Restructure project targets and binary distribution target
- Use one common static lib target
- create embeddedFramework as binary distribution including docset in one zip
- Add HockeySDK.xcconfig for easier build setting setup
- Move everything into a single directory, too many problems making binary and subproject work without requing recursive header search paths
- Documentation update pending
2012-10-07 21:49:47 +02:00

35 lines
849 B
Objective-C

//
// CNSHockeyBaseManager+Private.h
// HockeySDK
//
// Created by Andreas Linde on 04.06.12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <Foundation/Foundation.h>
#import <UIKit/UIKit.h>
@class BITHockeyBaseManager;
@class BITHockeyBaseViewController;
@interface BITHockeyBaseManager()
- (id)initWithAppIdentifier:(NSString *)appIdentifier isAppStoreEnvironemt:(BOOL)isAppStoreEnvironment;
- (void)startManager;
- (void)reportError:(NSError *)error;
- (NSString *)encodedAppIdentifier;
- (BOOL)isAppStoreEnvironment;
- (NSString *)getDevicePlatform;
- (NSString *)executableUUID;
- (UIWindow *)findVisibleWindow;
- (void)showView:(BITHockeyBaseViewController *)viewController;
- (NSData *)appendPostValue:(NSString *)value forKey:(NSString *)key;
- (NSDate *)parseRFC3339Date:(NSString *)dateString;
@end