74 lines
2.7 KiB
C#
74 lines
2.7 KiB
C#
using System;
|
|
using UnityEngine;
|
|
#if !TOUKA_TEST
|
|
#if UNITY_ANDROID
|
|
public static partial class StaticStringsKey
|
|
{
|
|
#if ANDROID_CN
|
|
// topon
|
|
public const string TOPON_APPID = "a619c9a2c1c531";
|
|
public const string TOPON_APPKEY = "c13e4357e57d78e76e472899eb182e98";
|
|
public const string IntersUnitId = "b619c9aec2bd23";
|
|
public const string RewardVideoUnitId = "b619c9ad5bc6cd";
|
|
public const string NativeUnitId = "";
|
|
public const string OpenscreenId = "b619c9af77b9c9";
|
|
public const string NativeBannerUnitId = "";
|
|
|
|
public const string GADValue = "ca-app-pub-3916046151571724~8559386104";
|
|
|
|
#elif ANDROID_TW
|
|
|
|
public const string TOPON_APPID = "a607acb6913054";
|
|
public const string TOPON_APPKEY = "c13e4357e57d78e76e472899eb182e98";
|
|
public const string IntersUnitId = "40a4ef2f4431ef15";
|
|
public const string RewardVideoUnitId = "a90b2ddd81e10daa";
|
|
public const string NativeUnitId = "b608251153978a";
|
|
public const string OpenscreenId = "b6082513e30bd0";
|
|
public const string NativeBannerUnitId = "b6083a3a129482";
|
|
|
|
public const string GADValue = "ca-app-pub-3916046151571724~8559386104";
|
|
|
|
#elif ANDROID_GP
|
|
|
|
public const string TOPON_APPID = "";
|
|
public const string TOPON_APPKEY = "";
|
|
public const string IntersUnitId = "728e3722f4d9c6fd";
|
|
public const string RewardVideoUnitId = "aab69171cbb875b6";
|
|
public const string NativeUnitId = "";
|
|
public const string OpenscreenId = "";
|
|
public const string NativeBannerUnitId = "";
|
|
|
|
public const string GADValue = "ca-app-pub-3916046151571724~8559386104";
|
|
|
|
#else
|
|
public const string TOPON_APPID = "";
|
|
public const string TOPON_APPKEY = "";
|
|
public const string IntersUnitId = "";
|
|
public const string RewardVideoUnitId = "";
|
|
public const string NativeUnitId = "";
|
|
public const string OpenscreenId = "";
|
|
public const string NativeBannerUnitId = "";
|
|
public const string GADValue = "ca-app-pub-3916046151571724~8559386104";
|
|
#endif
|
|
|
|
|
|
// touka sdk
|
|
public const string TOUKA_SDK_APPID = TOPON_APPID;
|
|
public const string TOUKA_SDK_APPKEY = TOPON_APPKEY;
|
|
|
|
public const string TOUKA_SDK_BANNERID = NativeBannerUnitId;
|
|
public const string TOUKA_SDK_INTERID = IntersUnitId;
|
|
public const string TOUKA_SDK_REWARDID = RewardVideoUnitId;
|
|
public const string TOUKA_SDK_NATIVEID = NativeUnitId;
|
|
public const string TOUKA_SDK_SPLASHID = OpenscreenId;
|
|
|
|
// 广告开关
|
|
public const bool BannerSwitch = false; // banner开关
|
|
public const bool InterSwitch = true; // 插屏开关
|
|
public const bool RewardSwitch = true; // 激励视频开关
|
|
public const bool NativeSwitch = false; // native开关
|
|
public const bool SplashSwitch = true; // 开屏开关
|
|
|
|
}
|
|
#endif
|
|
#endif |