github.com/slspeek/camlistore_namedsearch@v0.0.0-20140519202248-ed6f70f7721a/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 static NSString* const CamliCredentialsKey = @"org.camlistore.credentials"; 19 20 @interface LAAppDelegate : UIResponder <UIApplicationDelegate, CLLocationManagerDelegate, BITHockeyManagerDelegate> 21 22 @property(strong, nonatomic) UIWindow* window; 23 @property CLLocationManager* locationManager; 24 25 @property LACamliClient* client; 26 @property ALAssetsLibrary* library; 27 28 - (void)loadCredentials; 29 - (void)checkForUploads; 30 31 @end