我已经使用react-native构建了一个应用程序,我正在使用:react-native-google-mobile-ads and im trying to show ads that are only familey friendly.如何在React Native中实现此功能?
import { View } from "react-native";
import {
BannerAd,
BannerAdSize,
TestIds,
} from "react-native-google-mobile-ads";
const adUnitId = __DEV__
? TestIds.BANNER
: "ca-app-pub-8453281779869033/5007999033";
export default function BottomBanner() {
return (
<View style={{ justifyContent: "center", alignItems: "center" }}>
<BannerAd
style={{ width: "100%", height: 100 }}
unitId={adUnitId}
size={BannerAdSize.FULL_BANNER}
requestOptions={{
requestNonPersonalizedAdsOnly: true,
}}
/>
</View>
);
}
试着搜索文档
1条答案
按热度按时间z9smfwbn1#
1.将此添加到
requestOptions
: