CNBBASMJumpService.h 805 Bytes
//
//  CNBBASMJumpService.h
//  AFNetworking
//
//  Created by CNLive on 2021/11/2.
//

#import <Foundation/Foundation.h>
#import <CNLiveBeeHive/CNLiveBeeHive.h>


NS_ASSUME_NONNULL_BEGIN
@protocol CNBBASMJumpProtocol <NSObject,BHServiceProtocol>
/**
 注册百度小程序
 */
- (void)registerBBASMManager:(NSDictionary *)launchOptions;
/**
 打开百度小程序
 */
- (void)openBBASMModule:(NSString *)urlStr;
/**
 支付宝支付回调
 */
- (BOOL)cashierHandleOpenUrl:(NSURL *)url;
/**
 退出百度账号登录
 
 */
- (void)accountLogout;

@end
@interface CNBBASMJumpService : NSObject<CNBBASMJumpProtocol>
/**
 分享百度小程序
 */
+ (void)shareBBASMWithParams:(NSDictionary *)params;
/**
 获取Description的zip路径
 */
+ (NSString *)getPluginDescriptionPath;
@end

NS_ASSUME_NONNULL_END