mirror of
https://github.com/zhigang1992/react-native-code-push.git
synced 2026-06-11 08:04:23 +08:00
28 lines
615 B
Objective-C
28 lines
615 B
Objective-C
#import "RCTBridgeModule.h"
|
|
|
|
@interface HybridMobileDeploy : NSObject <RCTBridgeModule>
|
|
|
|
+ (NSURL *) getBundleUrl;
|
|
|
|
@end
|
|
|
|
@interface HybridMobileDeployConfig : NSObject
|
|
|
|
+ (void)setDeploymentKey:(NSString *)deploymentKey;
|
|
+ (NSString *)getDeploymentKey;
|
|
|
|
+ (void)setBaseUrl:(NSString *)baseUrl;
|
|
+ (NSString *)getBaseUrl;
|
|
|
|
+ (void)setVersionString:(NSString *)versionString;
|
|
+ (NSString *)getVersionString;
|
|
|
|
+ (void)setBuildVersion:(NSString *)buildVersion;
|
|
+ (NSString *)getBuildVersion;
|
|
|
|
+ (void)setRootComponent:(NSString *)rootComponent;
|
|
+ (NSString *)getRootComponent;
|
|
|
|
+ (NSDictionary *)getConfiguration;
|
|
|
|
@end |