80 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
			
		
		
	
	
			80 lines
		
	
	
		
			2.3 KiB
		
	
	
	
		
			C#
		
	
	
	
| using System.Collections;
 | |
| using System.Collections.Generic;
 | |
| using UnityEngine;
 | |
| 
 | |
| namespace Touka
 | |
| {
 | |
|     public class ConfigKeys
 | |
|     {
 | |
|         #region App info
 | |
| 
 | |
|         // app name
 | |
|         public const string KEY_AppName = "app_name";
 | |
|         // bundle id
 | |
|         public const string KEY_BunldId = "package_name";
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         #region Analytics
 | |
|         // umeng
 | |
|         public const string KEY_UMENG_APPKEY = "um_app_key";
 | |
|         public const string KEY_UMENG_CHANNELID = "channel";
 | |
| 
 | |
|         // ga
 | |
|         public const string KEY_GA_gameKey = "ga_key";
 | |
|         public const string KEY_GA_secretKey = "ga_secretkey";
 | |
| 
 | |
|         // tenjin
 | |
|         public const string KEY_TENJIN_KEY = "tenjin_api_key";
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         #region Ads
 | |
| 
 | |
|         // admob id
 | |
|         public const string KEY_Admob_AppID = "admob_id";
 | |
| 
 | |
|         // app id
 | |
|         public const string KEY_TOUKA_SDK_APPID = "ad_appid";
 | |
|         // app key
 | |
|         public const string KEY_TOUKA_SDK_APPKEY = "ad_appkey";
 | |
| 
 | |
|         // iv id
 | |
|         public const string KEY_TOUKA_SDK_INTERID = "ad_interstital_id";
 | |
|         // rv id
 | |
|         public const string KEY_TOUKA_SDK_REWARDID = "ad_reward_id";
 | |
|         // splash id
 | |
|         public const string KEY_TOUKA_SDK_SPLASHID = "ad_splash_id";
 | |
| 
 | |
|         // template native id // iOS use
 | |
|         public const string KEY_TOUKA_SDK_NATIVEID = "ad_templete_natvie_id";
 | |
|         // render native id
 | |
|         public const string KEY_TOUKA_SDK_RENDERNATIVEID = "ad_render_native_id";
 | |
|         // banner id
 | |
|         public const string KEY_TOUKA_SDK_BANNERID = "ad_banner_id";
 | |
|         // native banner id
 | |
|         public const string KEY_TOUKA_SDK_NATIVEBANNERID = "ad_native_banner_id";
 | |
|         // native splash id
 | |
|         public const string KEY_TOUKA_SDK_NATIVESPLASHID = "ad_native_splash_id";
 | |
| 
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         #region Basic Config
 | |
|         // PlayerAge
 | |
|         public const string KEY_PlayerAge = "tka_age";
 | |
|         // GameTheme
 | |
|         public const string KEY_GameTheme = "tka_theme";
 | |
|         // privacy url
 | |
|         public const string KEY_PrivacyURL = "tka_url_privacy";
 | |
|         // agreement url
 | |
|         public const string KEY_AgreementURL = "tka_url_agreement";
 | |
|         // more game url
 | |
|         public const string KEY_MoreGameURL = "tka_url_moregame";
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|     }
 | |
| 
 | |
| }
 |