react-native-admob / admob

Admob for React Native with powerful hooks and components

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issues when use with react-native-admob-native-ads

TrungNguyen153 opened this issue · comments

                     // unknow reason when install your package in my project cause function below not finish
                     
		 await AdManager.setRequestConfiguration({ // method from react-native-admob-native-ads
			trackingAuthorized,
			maxAdContentRating: 'G',
			tagForChildDirectedTreatment: false,
			tagForUnderAgeConsent: false,
		});

This is because the package react-native-admob-native-ads initializes sdk when call the function setRequestOptions, while this library initializes sdk automatically.
Replace AdManager.setRequestOptions to AdMob.setRequestOptions. AdMob is default export of this package.

tks your response. i will try

it work