feat: 구글 애드몹 패키지 추가(안드로이드 용만 추가)
This commit is contained in:
@@ -0,0 +1,122 @@
|
||||
using System;
|
||||
using System.IO;
|
||||
using UnityEditor;
|
||||
using UnityEngine;
|
||||
|
||||
namespace GoogleMobileAds.Editor
|
||||
{
|
||||
internal class GoogleMobileAdsSettings : ScriptableObject
|
||||
{
|
||||
private const string MobileAdsSettingsResDir = "Assets/GoogleMobileAds/Resources";
|
||||
|
||||
private const string MobileAdsSettingsFile = "GoogleMobileAdsSettings";
|
||||
|
||||
private const string MobileAdsSettingsFileExtension = ".asset";
|
||||
|
||||
internal static GoogleMobileAdsSettings LoadInstance()
|
||||
{
|
||||
// Read from resources.
|
||||
var instance = Resources.Load<GoogleMobileAdsSettings>(MobileAdsSettingsFile);
|
||||
|
||||
// Create instance if null.
|
||||
if (instance == null)
|
||||
{
|
||||
Directory.CreateDirectory(MobileAdsSettingsResDir);
|
||||
instance = ScriptableObject.CreateInstance<GoogleMobileAdsSettings>();
|
||||
string assetPath = Path.Combine(MobileAdsSettingsResDir,
|
||||
MobileAdsSettingsFile + MobileAdsSettingsFileExtension);
|
||||
AssetDatabase.CreateAsset(instance, assetPath);
|
||||
AssetDatabase.SaveAssets();
|
||||
Version agp = Version.Parse(Utils.AndroidGradlePluginVersion);
|
||||
instance.validateGradleDependencies = true;
|
||||
// Turn on Gradle Dependency Validation if AGP < 4.2.2
|
||||
if (agp.Major > 4 || (agp.Major == 4 && agp.Minor >= 2 && agp.Build >= 2))
|
||||
{
|
||||
instance.validateGradleDependencies = false;
|
||||
}
|
||||
}
|
||||
|
||||
return instance;
|
||||
}
|
||||
|
||||
[SerializeField]
|
||||
private string adMobAndroidAppId = string.Empty;
|
||||
|
||||
[SerializeField]
|
||||
private string adMobIOSAppId = string.Empty;
|
||||
|
||||
[SerializeField]
|
||||
private bool enableKotlinXCoroutinesPackagingOption = true;
|
||||
|
||||
[SerializeField]
|
||||
private bool optimizeInitialization;
|
||||
|
||||
[SerializeField]
|
||||
private bool optimizeAdLoading;
|
||||
|
||||
[SerializeField]
|
||||
private string userTrackingUsageDescription;
|
||||
|
||||
[SerializeField]
|
||||
private bool validateGradleDependencies;
|
||||
|
||||
[SerializeField]
|
||||
private string userLanguage = "en";
|
||||
|
||||
public string GoogleMobileAdsAndroidAppId
|
||||
{
|
||||
get { return adMobAndroidAppId; }
|
||||
|
||||
set { adMobAndroidAppId = value; }
|
||||
}
|
||||
|
||||
public bool EnableKotlinXCoroutinesPackagingOption
|
||||
{
|
||||
get { return enableKotlinXCoroutinesPackagingOption; }
|
||||
|
||||
set { enableKotlinXCoroutinesPackagingOption = value; }
|
||||
}
|
||||
|
||||
public string GoogleMobileAdsIOSAppId
|
||||
{
|
||||
get { return adMobIOSAppId; }
|
||||
|
||||
set { adMobIOSAppId = value; }
|
||||
}
|
||||
|
||||
public bool OptimizeInitialization
|
||||
{
|
||||
get { return optimizeInitialization; }
|
||||
|
||||
set { optimizeInitialization = value; }
|
||||
}
|
||||
|
||||
public bool OptimizeAdLoading
|
||||
{
|
||||
get { return optimizeAdLoading; }
|
||||
|
||||
set { optimizeAdLoading = value; }
|
||||
}
|
||||
|
||||
public string UserTrackingUsageDescription
|
||||
{
|
||||
get { return userTrackingUsageDescription; }
|
||||
|
||||
set { userTrackingUsageDescription = value; }
|
||||
}
|
||||
|
||||
public bool ValidateGradleDependencies
|
||||
{
|
||||
get { return validateGradleDependencies; }
|
||||
|
||||
set { validateGradleDependencies = value; }
|
||||
}
|
||||
|
||||
public string UserLanguage
|
||||
{
|
||||
get { return userLanguage; }
|
||||
|
||||
set { userLanguage = value; }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user