Commit bb39a355 by ludi

Merge branch 'feature/v57版本pk迁移' of http://git.yabolive.net:88/pidan/FuSiLive…

Merge branch 'feature/v57版本pk迁移' of http://git.yabolive.net:88/pidan/FuSiLive into feature/v57版本pk迁移
parents e68face1 e34a78f9
...@@ -160,6 +160,24 @@ static const NSString *FUSCidUDKey = @"FUSCidUDKey"; ...@@ -160,6 +160,24 @@ static const NSString *FUSCidUDKey = @"FUSCidUDKey";
- (NSString *)byteRTCKey - (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"; return @"617fbe83d6e69800c138e55e";
} }
......
...@@ -44,6 +44,10 @@ NS_ASSUME_NONNULL_BEGIN ...@@ -44,6 +44,10 @@ NS_ASSUME_NONNULL_BEGIN
/// byte的 key /// byte的 key
@property (nonatomic, copy) NSString *byteRTCKey; @property (nonatomic, copy) NSString *byteRTCKey;
/// byte的 测试key
@property (nonatomic, copy) NSString *byteRTCKeyTest;
/// byte的 正式key
@property (nonatomic, copy) NSString *byteRTCAppKeyFormal;
/// 环信正式AppKey /// 环信正式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