Skip to content

Commit

Permalink
Merge pull request #393 from AgoraIO/dev/4.4.0_ios
Browse files Browse the repository at this point in the history
Dev/4.4.0 ios
  • Loading branch information
tamworth authored Jun 24, 2024
2 parents d028327 + eacd6a6 commit 11e16c3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,5 +36,5 @@ struct KeyCenter {
进入声网控制台(https://console.agora.io/),创建一个带证书鉴权的项目,进入项目配置页,即可看到APP证书。如果项目没有开启证书鉴权,这个字段留空。
注意:App证书放在客户端不安全,推荐放在服务端以确保 App 证书不会泄露。
*/
static let Certificate: String? = <#YOUR Certificate#>
static let Certificate: String? = nil
}
2 changes: 1 addition & 1 deletion iOS/APIExample-OC/APIExample-OC/Common/KeyCenter.m
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
#import "KeyCenter.h"

static NSString * const APPID = <#YOUR APPID#>;
static NSString * const Certificate = <#YOUR Certificate#>;
static NSString * const Certificate = nil;

@implementation KeyCenter

Expand Down
2 changes: 1 addition & 1 deletion iOS/APIExample/APIExample/Common/KeyCenter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class KeyCenter: NSObject {
进入声网控制台(https://console.agora.io/),创建一个带证书鉴权的项目,进入项目配置页,即可看到APP证书。如果项目没有开启证书鉴权,这个字段留空。
注意:App证书放在客户端不安全,推荐放在服务端以确保 App 证书不会泄露。
*/
static let Certificate: String? = <#YOUR Certificate#>
static let Certificate: String? = nil


static let FaceCaptureLicense: String? = nil
Expand Down
2 changes: 1 addition & 1 deletion macOS/APIExample/Common/KeyCenter.swift
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ struct KeyCenter {
进入声网控制台(https://console.agora.io/),创建一个带证书鉴权的项目,进入项目配置页,即可看到APP证书。如果项目没有开启证书鉴权,这个字段留空。
注意:App证书放在客户端不安全,推荐放在服务端以确保 App 证书不会泄露。
*/
static let Certificate: String? = <#YOUR Certificate#>
static let Certificate: String? = nil


/**
Expand Down

0 comments on commit 11e16c3

Please sign in to comment.