update 1.1.25

This commit is contained in:
2024-03-12 02:17:14 +08:00
parent 5a00a4438a
commit 1a9e55a8a3
346 changed files with 1902 additions and 4759 deletions

View File

@@ -48,7 +48,7 @@ namespace AnyThink.Scripts.Editor
dynamicLibraryPathsToEmbed.Add(Path.Combine("Pods/", "BigoADS/BigoADS/BigoADS.xcframework"));
dynamicLibraryPathsToEmbed.Add(Path.Combine("Pods/", "BigoADS/BigoADS/OMSDK_Bigosg.xcframework"));
dynamicLibraryPathsToEmbed.Add(Path.Combine("Pods/", "HyBid/PubnativeLite/PubnativeLite/OMSDK-1.3.29/OMSDK_Pubnativenet.xcframework"));
dynamicLibraryPathsToEmbed.Add(Path.Combine("Pods/", "Fyber_Marketplace_SDK/IASDKCore/IASDKCore.xcframework"));
return dynamicLibraryPathsToEmbed;
@@ -164,13 +164,13 @@ namespace AnyThink.Scripts.Editor
private static void AddGoogleApplicationIdIfNeeded(PlistDocument plist)
{
if (!ATConfig.isIOSNetworkInstalled("Admob", ATConfig.NONCHINA_COUNTRY))
if (!ATConfig.isNetworkInstalledByName("Admob", ATConfig.OS_IOS))
{
ATLog.log("addGoogleApplicationIdIfNeeded() >>> Admob not install.");
return;
}
var appId = ATPluginSetting.Instance.AdMobIosAppId;
//获取admob app id
var appId = ATConfig.getAdmobAppIdByOs(ATConfig.OS_IOS);
if (string.IsNullOrEmpty(appId) || !appId.StartsWith("ca-app-pub-"))
{