123456789101112131415161718192021222324252627282930313233343536 |
- //
- // 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 kBaseUrlHost_test @"http://yongxu.yehaoji.cn:8199/api/v1" // API地址
- #define kBaseUrlHeadImg_test @"http://yongxu.yehaoji.cn:18199" // 头像地址
- //#define kBaseUrlHost_test @"http://114.115.251.196:8299/api/v1" // API地址
- // 生产环境
- #define kBaseUrlHost @"https://app.yongxulvjian.com/api/v1"
- #define kBaseUrlHeadImg @"https://app.yongxulvjian.com"
- //#define kBaseUrlHost @"http://114.115.251.196:8299/api/v1"
- //#define kBaseUrlHeadImg @"http://yongxu.yehaoji.cn:18199"
- #endif /* RDSConfig_h */
|