广告测试

This commit is contained in:
2026-06-02 17:51:10 +08:00
parent 6866b7fca9
commit 4f33446770
9 changed files with 5138 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
public static class AdReadyStateLog
{
public static string FormatReadyCheck(string format, string adUnitId, bool isReady)
{
string status = isReady ? "OK" : "WARNING";
return $"[{format}] Loaded callback ready check: adUnitId={adUnitId}, IsReady={isReady}, {status}";
}
}