BDPBoxBundle.h 870 Bytes
//
//  BDPBoxBundle.h
//  BDPCommonParams
//
//  Created by Zhu,Yusong on 2018/12/19.
//
/**
 * 读取 info.plist 、 channelinfo.plist 和 BaiduService-Info.plist 中的配置信息,没有缓存
 * 详细介绍见README
 */

#import <Foundation/Foundation.h>

NS_ASSUME_NONNULL_BEGIN

@interface BDPBoxBundle : NSObject

/// 4位版本号 从CFBundleVersion获取
@property (class, readonly, strong) NSString *innerVersion;

/// 3位版本号 从CFBundleShortVersionString获取
@property (class, readonly, strong) NSString *innerShortVersion;

/// app displayName 从CFBundleDisplayName获取
@property (class, readonly, strong) NSString *bundleDisplayName;

/// 渠道来源,默认值是1099a
@property (class, readonly, strong) NSString *channelSource;

/// 获取app的名称
@property (class, readonly, strong) NSString *appName;

@end

NS_ASSUME_NONNULL_END