Commit 4922cebc5af5b1a98510afd1ee6c79c8495d6906
1 parent
c022c7c9
no message
Showing
3 changed files
with
1 additions
and
51 deletions
CNLiveEnvironment.podspec
| @@ -8,7 +8,7 @@ | @@ -8,7 +8,7 @@ | ||
| 8 | 8 | ||
| 9 | Pod::Spec.new do |s| | 9 | Pod::Spec.new do |s| |
| 10 | s.name = 'CNLiveEnvironment' | 10 | s.name = 'CNLiveEnvironment' |
| 11 | - s.version = '0.0.1' | 11 | + s.version = '0.0.2' |
| 12 | s.summary = '网家家环境.' | 12 | s.summary = '网家家环境.' |
| 13 | 13 | ||
| 14 | # This description is used to generate tags and improve search results. | 14 | # This description is used to generate tags and improve search results. |
CNLiveEnvironment/Classes/CNLiveConst.h deleted
100644 → 0
| 1 | -// | ||
| 2 | -// CNLiveConst.h | ||
| 3 | -// XWTest | ||
| 4 | -// | ||
| 5 | -// Created by CNLive-zxw on 2019/7/13. | ||
| 6 | -// Copyright © 2019 CNLive. All rights reserved. | ||
| 7 | -// | ||
| 8 | - | ||
| 9 | -#ifndef CNLiveConst_h | ||
| 10 | -#define CNLiveConst_h | ||
| 11 | - | ||
| 12 | -//////////////////////////////////////////////////////// | ||
| 13 | -//////////// App | ||
| 14 | -//////////////////////////////////////////////////////// | ||
| 15 | -// AppStore中AppID用于跳转AppStore下载/评分 | ||
| 16 | -#define AppStoreAppId @"1337575478" | ||
| 17 | - | ||
| 18 | -// 请求查询app在AppStore的上架信息 | ||
| 19 | -#define AppStoreAppInfo @"https://itunes.apple.com/lookup?id=1337575478" | ||
| 20 | - | ||
| 21 | -// yes:显示欢迎页 no:不显示欢迎页 | ||
| 22 | -#define AppShowGuidePage @"no" | ||
| 23 | - | ||
| 24 | -//上传手机通讯录和生成订单二维码时,DES加密key | ||
| 25 | -#define AppDESKey @"cnliveIm" | ||
| 26 | - | ||
| 27 | -//////////////////////////////////////////////////////// | ||
| 28 | -//////////// 数据库---表名 | ||
| 29 | -//////////////////////////////////////////////////////// | ||
| 30 | - | ||
| 31 | -//达人个人主页表名 | ||
| 32 | -#define DarenHomeRealm @"DarenHome" | ||
| 33 | - | ||
| 34 | -//达人列表表名 | ||
| 35 | -#define DarenSubsRealm @"DarenSubs" | ||
| 36 | - | ||
| 37 | -//生活列表表名 | ||
| 38 | -#define LifeSubsRealm @"LifeSubs" | ||
| 39 | - | ||
| 40 | -//系统订单列表表名 | ||
| 41 | -#define LifeHomeRealm @"LifeHome" | ||
| 42 | - | ||
| 43 | -//朋友圈新消息表名 | ||
| 44 | -#define MomentNewMsgRealm @"MomentNewMsg" | ||
| 45 | - | ||
| 46 | - | ||
| 47 | -#endif /* CNLiveConst_h */ |
CNLiveEnvironment/Classes/CNLiveEnvironment.h
| @@ -12,9 +12,6 @@ | @@ -12,9 +12,6 @@ | ||
| 12 | // 接口 | 12 | // 接口 |
| 13 | #import "CNLiveInterface.h" | 13 | #import "CNLiveInterface.h" |
| 14 | 14 | ||
| 15 | -// 常量 | ||
| 16 | -#import "CNLiveConst.h" | ||
| 17 | - | ||
| 18 | // 详细环境 | 15 | // 详细环境 |
| 19 | #define EnvironmentType [CNLiveEnvironmentManager manager].isEnvironment | 16 | #define EnvironmentType [CNLiveEnvironmentManager manager].isEnvironment |
| 20 | 17 |