我在游戏商店中有这个应用程序,它是pegi 7 plus,因此孩子们可以使用它。在此应用中,我正在使用firebase_admob插件来投放非页内广告。 要投放广告,我需要创建一个看起来像这样的MobileAdTargetingInfo类:
static final MobileAdTargetingInfo targetingInfo = MobileAdTargetingInfo(
testDevices: id,
keywords: ["foo", "game"]
);
我已经看到,该类还带有一个名为childDirected的布尔参数。这是否意味着我需要检查用户的年龄并更改此变量,或者google是在为我做这些事情?