68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			68 lines
		
	
	
		
			1.9 KiB
		
	
	
	
		
			C#
		
	
	
	
| #if !TOUKA_TEST
 | ||
| #if UNITY_IOS
 | ||
| public static partial class StaticStringsKey {
 | ||
|     #region Analythics SDK Param
 | ||
| 
 | ||
| #if IOS_CN
 | ||
|     // apple app id
 | ||
|     public const string APPLE_APP_ID = "1629388707";        // Only review to jump to the game store details page useful
 | ||
| 
 | ||
|     // umeng
 | ||
|     public const string UMENG_APPKEY = "62789bffd024421570e7bae4";
 | ||
|     public const string UMENG_CHANNELID = "AppStore";
 | ||
| 
 | ||
|     // ga
 | ||
|     public const string GA_gameKey = "1d7378db891b3bd0e175c340b334ae6e";
 | ||
|     public const string GA_secretKey = "3a3a660826e67ef6790a0910c324b1cd7aab3f07";
 | ||
| 
 | ||
|     // tenjin
 | ||
|     public const string TENJIN_KEY = "PYOTVKJ4XZJHSMZW2V6GBQRCNXAFKWU2";
 | ||
| 
 | ||
| 
 | ||
| #else
 | ||
|     // apple app id
 | ||
|     public const string APPLE_APP_ID = "1611015066";        // 只 review url(跳转游戏商店详情页) 有用到
 | ||
| 
 | ||
|     // umeng
 | ||
|     public const string UMENG_APPKEY = "6216f7922b8de26e11c2cee8";
 | ||
|     public const string UMENG_CHANNELID = "AppStore";
 | ||
| 
 | ||
|     // ga
 | ||
|     public const string GA_gameKey = "be1c0cda4404baa954c44b98b8fe655d";
 | ||
|     public const string GA_secretKey = "872590a0fa12a96d9fa464fa3e0118f94ea40991";
 | ||
| 
 | ||
|     // tenjin
 | ||
|     public const string TENJIN_KEY = "PYOTVKJ4XZJHSMZW2V6GBQRCNXAFKWU2";
 | ||
| 
 | ||
|         
 | ||
| 
 | ||
| #endif
 | ||
| 
 | ||
|     #endregion
 | ||
| 
 | ||
|     #region 自动打包所需配置
 | ||
| 
 | ||
|     // 国内包 bundle id
 | ||
|     public const string BunldId_CN = "com.hotpotgames.brainpuzzle";
 | ||
| 
 | ||
|     // 国内包 SDK 所需宏定义 - 【IOS_CN】(请自行补全游戏中需要的其他宏)
 | ||
|     public const string ScriptingDefineSymbols_CN = "IOS_CN;";
 | ||
| 
 | ||
| 
 | ||
| 
 | ||
|     // 海外包 bundle id
 | ||
|     public const string BunldId_US = "com.hotpotgames.brainpuzzle.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 |