local function update_info()
if not adinfo then
return
end
local info = adinfo.get()
if info then
-- コンソールに出力
print("ad_ident = "..info.ad_ident.."\nad_tracking_enabled = "..tostring(info.ad_tracking_enabled))
else
print("Ad info do not ready!")
end
end