You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
78 lines
1.8 KiB
78 lines
1.8 KiB
4 years ago
|
//
|
||
|
// TFSettingConfig.h
|
||
|
// TFReader
|
||
|
//
|
||
|
// Created by 谢腾飞 on 2020/12/21.
|
||
|
// Copyright © 2020 xtfei_2011@126.com. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#ifndef TFSettingConfig_h
|
||
|
#define TFSettingConfig_h
|
||
|
|
||
|
// APP默认语言(en:英语;zh-Hans:简体中文;zh-Hant:繁体中文;th:泰语)
|
||
|
#define TF_Default_Language @"en"
|
||
|
|
||
|
// 主货币名称
|
||
|
#define Main_Unit_Name TFLocalizedString(@"书币")
|
||
|
|
||
|
// 子货币名称
|
||
|
#define Sub_Unit_Name TFLocalizedString(@"书券")
|
||
|
|
||
|
// apple ID
|
||
|
#define Apple_ID @"1543830673"
|
||
|
|
||
|
// api服务器地址
|
||
|
#define APIURL [NSString stringWithFormat:@"http://%@", api_host]
|
||
|
|
||
|
// api域名
|
||
|
#define api_host @"api.kanshu116116.com"//@"192.168.10.111"
|
||
|
|
||
|
// api秘钥
|
||
|
#define app_key @"0c44876680d7a4e2"
|
||
|
|
||
|
// api签名
|
||
|
#define secret_key @"7de8a70d15d8fd198b8b53b53d58e110"
|
||
|
|
||
|
// 提交审核时间
|
||
|
#define Submission_Date @"2020-12-28 21:26:34"
|
||
|
|
||
|
/**
|
||
|
友盟
|
||
|
*/
|
||
|
#define UM_App_Key @""
|
||
|
|
||
|
// 穿山甲
|
||
|
#define BUA_App_Key @""
|
||
|
|
||
|
// 启动页默认Key
|
||
|
#define BUA_Splash_Key @""
|
||
|
|
||
|
// 激励视频默认Key
|
||
|
#define BUA_Incentive_Video_Key @""
|
||
|
|
||
|
// 讯飞语音
|
||
|
#define IFLY_App_ID @"5fddc7e5"
|
||
|
|
||
|
// 进入后台后返回App前台重新展示广告间隔时间(分钟)
|
||
|
#define TF_Launch_Interval 2.0f
|
||
|
|
||
|
// 好评页跳转地址
|
||
|
#define TF_EvaluationAddress [NSString stringWithFormat:@"https://itunes.apple.com/cn/app/id%@?mt=8", Apple_ID]
|
||
|
|
||
|
/**
|
||
|
微信
|
||
|
*/
|
||
|
#define TF_WeChat_APPID @"wx0193612ff6250f4c"
|
||
|
|
||
|
#define TF_WeChat_Secret @"f5d221c5da4c7c15fd5a319dbf7073e4"
|
||
|
|
||
|
/**
|
||
|
QQ
|
||
|
*/
|
||
|
#define Tencent_APPID @"101918139"
|
||
|
|
||
|
#define Tencent_APPKey @"a2db16ec7a1141db1d2e95c17d9c07ce"
|
||
|
|
||
|
|
||
|
#endif /* TFSettingConfig_h */
|