Commit 4cfd9c4f by suolong

更新下byteRTC配置

parent 566e92fc
......@@ -160,6 +160,24 @@ static const NSString *FUSCidUDKey = @"FUSCidUDKey";
- (NSString *)byteRTCKey
{
switch (FUSConfig.sharedInstanced.devConfigs.devLevel) {
case FUSDevlopLevelDeveloper:
return FUSConfig.sharedInstanced.sdkConfigs.byteRTCKeyTest;
break;
default:
return FUSConfig.sharedInstanced.sdkConfigs.byteRTCAppKeyFormal;
break;
}
}
- (NSString *)byteRTCKeyTest
{
return @"617bb104aecf7700c457b7c9";
}
- (NSString *)byteRTCAppKeyFormal
{
return @"617fbe83d6e69800c138e55e";
}
......
......@@ -44,6 +44,10 @@ NS_ASSUME_NONNULL_BEGIN
/// byte的 key
@property (nonatomic, copy) NSString *byteRTCKey;
/// byte的 测试key
@property (nonatomic, copy) NSString *byteRTCKeyTest;
/// byte的 正式key
@property (nonatomic, copy) NSString *byteRTCAppKeyFormal;
/// 环信正式AppKey
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment