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 = "1579995714";        // Only review to jump to the game store details page useful
 | ||
| 
 | ||
|     // umeng
 | ||
|     public const string UMENG_APPKEY = "6216f7ac317aa877605f984f";
 | ||
|     public const string UMENG_CHANNELID = "AppStore";
 | ||
| 
 | ||
|     // ga
 | ||
|     public const string GA_gameKey = "bc6ba4a6dd0e2596544fa6a56ef6b46f";
 | ||
|     public const string GA_secretKey = "bd54e27a4707d4570612d160c9ad50bf4007590f";
 | ||
| 
 | ||
|     // tenjin
 | ||
|     public const string TENJIN_KEY = "PYOTVKJ4XZJHSMZW2V6GBQRCNXAFKWU2";
 | ||
| 
 | ||
| 
 | ||
| #else
 | ||
|     // apple app id
 | ||
|     public const string APPLE_APP_ID = "1625019368";        // 只 review url(跳转游戏商店详情页) 有用到
 | ||
| 
 | ||
|     // umeng
 | ||
|     public const string UMENG_APPKEY = "62789be530a4f67780cf9727";
 | ||
|     public const string UMENG_CHANNELID = "AppStore";
 | ||
| 
 | ||
|     // ga
 | ||
|     public const string GA_gameKey = "9368bf3ee0da83b3e50983ec2c22bb66";
 | ||
|     public const string GA_secretKey = "44c031f38f20de77c5cb0f5e1ab1c430b91a309a";
 | ||
| 
 | ||
|     // 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 |