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 = "1620904226";        // 只 review url(跳转游戏商店详情页) 有用到 | |||
|  | 
 | |||
|  |     // umeng | |||
|  |     public const string UMENG_APPKEY = "624d4fba6adb343c47f49793"; | |||
|  |     public const string UMENG_CHANNELID = "AppStore"; | |||
|  | 
 | |||
|  |     // ga | |||
|  |     public const string GA_gameKey = "900189f3c8e89483a0d4a3bb52b0b3ca"; | |||
|  |     public const string GA_secretKey = "2c781f4abeb5ec106037bc70603eec135326db34"; | |||
|  | 
 | |||
|  |     // 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 |