mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
26 lines
689 B
Objective-C
26 lines
689 B
Objective-C
//
|
|
// ALTDeviceManager.h
|
|
// AltServer
|
|
//
|
|
// Created by Riley Testut on 5/24/19.
|
|
// Copyright © 2019 Riley Testut. All rights reserved.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import <AltSign/AltSign.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface ALTDeviceManager : NSObject
|
|
|
|
@property (class, nonatomic, readonly) ALTDeviceManager *sharedManager;
|
|
|
|
@property (nonatomic, readonly) NSArray<ALTDevice *> *connectedDevices;
|
|
@property (nonatomic, readonly) NSArray<ALTDevice *> *availableDevices;
|
|
|
|
- (NSProgress *)installAppAtURL:(NSURL *)fileURL toDeviceWithUDID:(NSString *)udid completionHandler:(void (^)(BOOL success, NSError *_Nullable error))completionHandler;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|