github.com/olivere/camlistore@v0.0.0-20140121221811-1b7ac2da0199/clients/ios-objc/photobackup/LAAppDelegate.h (about) 1 // 2 // LAAppDelegate.h 3 // photobackup 4 // 5 // Created by Nick O'Neill on 10/20/13. 6 // Copyright (c) 2013 The Camlistore Authors. All rights reserved. 7 // 8 9 #import <UIKit/UIKit.h> 10 #import <CoreLocation/CoreLocation.h> 11 #import "LACamliClient.h" 12 #import <HockeySDK/HockeySDK.h> 13 14 @class ALAssetsLibrary; 15 16 static NSString *const CamliUsernameKey = @"org.camlistore.username"; 17 static NSString *const CamliServerKey = @"org.camlistore.serverurl"; 18 19 @interface LAAppDelegate : UIResponder <UIApplicationDelegate,CLLocationManagerDelegate,BITHockeyManagerDelegate> 20 21 @property (strong, nonatomic) UIWindow *window; 22 @property CLLocationManager *locationManager; 23 24 @property LACamliClient *client; 25 // kicked out of the library if we don't have a reference and still want to play with the books 26 @property ALAssetsLibrary *library; 27 28 - (void)loadCredentials; 29 - (void)checkForUploads; 30 31 @end