12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- //
- // RDSConfig.h
- // singleProduct
- //
- // Created by coderYK on 2018/4/26.
- // Copyright © 2018年 coderYK. All rights reserved.
- //
- #ifndef RDSConfig_h
- #define RDSConfig_h
- #define kUserAgreement @"https://app.yongxulvjian.com/#/ServiceAgreement"
- #define kPrivacyPolicy @"https://app.yongxulvjian.com/#/PrivacyPolicy"
- #define kHelpList @"https://app.yongxulvjian.com/HelpList"
- #define kDeviceH5Url @"https://app.yongxulvjian.com/#/deviceManage/"
- #define kAppIdOnAppStore @"1665374482" // 用于检测更新
- #define kGtAppId @"LSFQhLICT5AiOMB7CIZ1D9"
- #define kGtAppKey @"c54XZSBhsj6qqjbRpAbTA5"
- #define kGtAppSecret @"nAEiDQA8MP9pnbvuMadNI7"
- // 测试环境
- //#define kBaseUrlHost_test @"http://yongxu.yehaoji.cn:8199/api/v1" // API地址
- //#define kBaseUrlHeadImg_test @"http://yongxu.yehaoji.cn:18199" // 头像地址
- #define kBaseUrlHeadImg_test @"https://app.yongxulvjian.com" // 头像地址
- //#define kBaseUrlHost_test @"http://114.115.251.196:8299/api/v1" // API地址
- #define kBaseUrlHost_test @"https://appv2.yongxulvjian.com/api/v1"
- // 生产环境
- #define kBaseUrlHost @"https://appv2.yongxulvjian.com/api/v1"
- #define kBaseUrlHeadImg @"https://appv2.yongxulvjian.com"
- //#define kBaseUrlHost @"http://114.115.251.196:8299/api/v1"
- //#define kBaseUrlHeadImg @"http://yongxu.yehaoji.cn:18199"
- // H5
- //#define kBaseUrlH5 @"https://app.yongxulvjian.com"
- #define kBaseUrlH5 @"https://appv2.yongxulvjian.com/#/"
- #endif /* RDSConfig_h */
|