//Causes a device to receive test ads. The deviceId can be obtained by viewing the logcat output after creating a new ad. public void AddTestDevices(params string[] ids) { if (!_IsInited) { Debug.LogWarning("AddTestDevice shoudl be called only after Init function. Call ignored"); return; } if (ids.Length == 0) { return; } AN_GoogleAdProxy.AddTestDevices(string.Join(DEVICES_SEPARATOR, ids)); }