68 lines
1.9 KiB
C#
68 lines
1.9 KiB
C#
#if !TOUKA_TEST
|
||
#if UNITY_IOS
|
||
public static partial class StaticStringsKey {
|
||
#region 统计平台SDK参数
|
||
|
||
#if IOS_CN
|
||
// apple app id
|
||
public const string APPLE_APP_ID = "1560492384"; // 只 review url(跳转游戏商店详情页) 有用到
|
||
|
||
// umeng
|
||
public const string UMENG_APPKEY = "60604423b8c8d45c13b371c6";
|
||
public const string UMENG_CHANNELID = "AppStore";
|
||
|
||
// ga
|
||
public const string GA_gameKey = "eb6b183378034413abeade812178e3e9";
|
||
public const string GA_secretKey = "3dec4785f7d53f4ddac931b7df7869e836333830";
|
||
|
||
// tenjin
|
||
public const string TENJIN_KEY = "PYOTVKJ4XZJHSMZW2V6GBQRCNXAFKWU2";
|
||
|
||
|
||
#else
|
||
// apple app id
|
||
public const string APPLE_APP_ID = "1579996579"; // 只 review url(跳转游戏商店详情页) 有用到
|
||
|
||
// umeng
|
||
public const string UMENG_APPKEY = "615004cd66b59330aa712a88";
|
||
public const string UMENG_CHANNELID = "AppStore";
|
||
|
||
// ga
|
||
public const string GA_gameKey = "9d36c99fe573dd705fe0036cc7920541";
|
||
public const string GA_secretKey = "b89ae3d2790eaefe47342eed512e822657c3585b";
|
||
|
||
// tenjin
|
||
public const string TENJIN_KEY = "PYOTVKJ4XZJHSMZW2V6GBQRCNXAFKWU2";
|
||
|
||
|
||
|
||
#endif
|
||
|
||
#endregion
|
||
|
||
#region 自动打包所需配置
|
||
|
||
// 国内包 bundle id
|
||
public const string BunldId_CN = "com.toukagame.demotest";
|
||
|
||
// 国内包 SDK 所需宏定义 - 【IOS_CN】(请自行补全游戏中需要的其他宏)
|
||
public const string ScriptingDefineSymbols_CN = "IOS_CN;";
|
||
|
||
|
||
|
||
// 海外包 bundle id
|
||
public const string BunldId_US = "com.toukagame.demotest.global";
|
||
|
||
// 海外包 SDK 所需宏定义 - 【】(请自行补全游戏中需要的其他宏)
|
||
public const string ScriptingDefineSymbols_US = "";
|
||
|
||
#endregion
|
||
|
||
|
||
|
||
// review url
|
||
public const string REVIEW_URL = "itms-apps://itunes.apple.com/app/id" + APPLE_APP_ID + "?action=write-review";
|
||
}
|
||
|
||
#endif
|
||
#endif |