Commit c21f2787ae116f7590acec0b10b56c6c8a665b12

Authored by 王军波
1 parent 2b77bc5b

kjsdb

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