Commit bcc68fc0b350baf35761b477b653b27ac4a11f74

Authored by zhangxiaowen
1 parent 0acdf7f7

no message

CNLiveEnvironmentConfiguration.podspec
... ... @@ -37,6 +37,9 @@ TODO: Add long description of the pod here.
37 37 # s.public_header_files = 'Pod/Classes/**/*.h'
38 38 # s.frameworks = 'UIKit', 'MapKit'
39 39 # s.dependency 'AFNetworking', '~> 2.3'
  40 +
  41 + ss.source_files = 'CNLiveEnvironmentConfiguration/Classes/CNLiveEnvironmentConfiguration.h'
  42 +
40 43 # 测试个人
41 44 s.subspec 'DebugPersonal' do |ss|
42 45 ss.source_files = 'CNLiveEnvironmentConfiguration/Classes/DebugPersonal/*'
... ...
CNLiveEnvironmentConfiguration/Classes/CNLiveEnvironmentConfiguration.h 0 → 100644
  1 +//
  2 +// CNLiveEnvironmentConfiguration.h
  3 +// CNLiveNetAdd
  4 +//
  5 +// Created by CNLive-zxw on 2019/4/26.
  6 +// Copyright © 2019 cnlive. All rights reserved.
  7 +//
  8 +
  9 +#ifndef CNLiveEnvironmentConfiguration_h
  10 +#define CNLiveEnvironmentConfiguration_h
  11 +
  12 +#import "CNEnvironmentHeader.h"
  13 +#import "NetworkAPIs.h"
  14 +
  15 +#endif /* CNLiveEnvironmentConfiguration_h */
... ...
CNLiveEnvironmentConfiguration/Classes/DebugInHouse/CNEnvironmentHeader.h
... ... @@ -13,6 +13,12 @@
13 13 *网家家环境配置文件
14 14 */
15 15  
  16 +#ifdef AppId1 //测试
  17 +#define abc 1231
  18 +#else//正式
  19 +#define abc 1232
  20 +#endif
  21 +
16 22 // App Store 中 AppID 用于跳转 App Store 下载/评分
17 23 #define AppStoreAppId @"1337575478"
18 24  
... ...
CNLiveEnvironmentConfiguration/Classes/DebugInHouse/NetworkAPIs.h
... ... @@ -8,6 +8,7 @@
8 8  
9 9 #ifndef NetworkAPIs_h
10 10 #define NetworkAPIs_h
  11 +#import "CNEnvironmentHeader.h"
11 12  
12 13 //上传手机通讯录和 生成订单二维码时,DES加密key
13 14 #define kUploadContactsKey @"cnliveIm"
... ...
CNLiveEnvironmentConfiguration/Classes/DebugPersonal/NetworkAPIs.h
... ... @@ -8,6 +8,7 @@
8 8  
9 9 #ifndef NetworkAPIs_h
10 10 #define NetworkAPIs_h
  11 +#import "CNEnvironmentHeader.h"
11 12  
12 13 //上传手机通讯录和 生成订单二维码时,DES加密key
13 14 #define kUploadContactsKey @"cnliveIm"
... ...
CNLiveEnvironmentConfiguration/Classes/ReleaseInHouse/NetworkAPIs.h
... ... @@ -8,6 +8,7 @@
8 8  
9 9 #ifndef NetworkAPIs_h
10 10 #define NetworkAPIs_h
  11 +#import "CNEnvironmentHeader.h"
11 12  
12 13 //上传手机通讯录和 生成订单二维码时,DES加密key
13 14 #define kUploadContactsKey @"cnliveIm"
... ...
CNLiveEnvironmentConfiguration/Classes/ReleasePersonal/NetworkAPIs.h
... ... @@ -8,6 +8,7 @@
8 8  
9 9 #ifndef NetworkAPIs_h
10 10 #define NetworkAPIs_h
  11 +#import "CNEnvironmentHeader.h"
11 12  
12 13 //上传手机通讯录和 生成订单二维码时,DES加密key
13 14 #define kUploadContactsKey @"cnliveIm"
... ...