Commit c21f2787ae116f7590acec0b10b56c6c8a665b12
1 parent
2b77bc5b
kjsdb
Showing
3 changed files
with
6 additions
and
5 deletions
LiveVideoCloud.xcodeproj/project.pbxproj
| ... | ... | @@ -2643,7 +2643,7 @@ |
| 2643 | 2643 | "$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/WeChatSDK", |
| 2644 | 2644 | "$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/SinaSDK", |
| 2645 | 2645 | ); |
| 2646 | - PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.shipinzhongguo; | |
| 2646 | + PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.shipinzhongguoInhouse; | |
| 2647 | 2647 | PRODUCT_NAME = "$(TARGET_NAME)"; |
| 2648 | 2648 | }; |
| 2649 | 2649 | name = Debug; |
| ... | ... | @@ -2673,7 +2673,7 @@ |
| 2673 | 2673 | "$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/WeChatSDK", |
| 2674 | 2674 | "$(PROJECT_DIR)/LiveVideoCloud/Classes/SDK/SinaSDK", |
| 2675 | 2675 | ); |
| 2676 | - PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.shipinzhongguo; | |
| 2676 | + PRODUCT_BUNDLE_IDENTIFIER = com.cnlive.shipinzhongguoInhouse; | |
| 2677 | 2677 | PRODUCT_NAME = "$(TARGET_NAME)"; |
| 2678 | 2678 | }; |
| 2679 | 2679 | name = Release; | ... | ... |
LiveVideoCloud/Info.plist
| ... | ... | @@ -27,10 +27,10 @@ |
| 27 | 27 | </dict> |
| 28 | 28 | <key>NSCameraUsageDescription</key> |
| 29 | 29 | <string>App需要您的同意,才能访问相机</string> |
| 30 | - <key>NSPhotoLibraryUsageDescription</key> | |
| 31 | - <string>App 需要您的同意,才能读取媒体资料库</string> | |
| 32 | 30 | <key>NSMicrophoneUsageDescription</key> |
| 33 | 31 | <string>App需要您的同意,才能访问麦克风</string> |
| 32 | + <key>NSPhotoLibraryUsageDescription</key> | |
| 33 | + <string>App 需要您的同意,才能读取媒体资料库</string> | |
| 34 | 34 | <key>UILaunchStoryboardName</key> |
| 35 | 35 | <string>LaunchScreen</string> |
| 36 | 36 | <key>UIRequiredDeviceCapabilities</key> | ... | ... |
LiveVideoCloud/UtilKits/ServerUrl/ZXServerUrl.m
| ... | ... | @@ -12,7 +12,8 @@ |
| 12 | 12 | #define serverBaseURL appDelegate.isTestEnvironment ? @"http://test.open.cnlive.com/openapi/api2" : @"https://api.cnlive.com/open/api2";//@"http://api.cnlive.com";//通用测试服务器域名 |
| 13 | 13 | //static NSString *serverChatBaseURL = @"http://120.92.4.46:8081";//聊天测试服务器域名 |
| 14 | 14 | #else |
| 15 | -#define serverBaseURL @"https://api.cnlive.com/open/api2";//通用正式服务器域名 | |
| 15 | +//#define serverBaseURL @"https://api.cnlive.com/open/api2";//通用正式服务器域名 | |
| 16 | +#define serverBaseURL appDelegate.isTestEnvironment ? @"http://test.open.cnlive.com/openapi/api2" : @"https://api.cnlive.com/open/api2"; | |
| 16 | 17 | //static NSString *serverChatBaseURL = @"https://perapi.svipmovie1.com";//聊天正式服务器域名 |
| 17 | 18 | #endif |
| 18 | 19 | ... | ... |