When using adsManager, it shows the same ad in all places within the same screen,
any idea why is this happening ? i’m requesting 10 ads in each screen with the following line:
var adsManager = new FacebookAds.NativeAdsManager(Platform.OS ==='android' ? "xxxxxx": "xxxxxx", 10);
then within the renderItem function of a flatlist, i render 1 ad per 5 rows using the following check:
{index > 0 && index % 4 == 0 && <NotificationsAdComponent adsManager={adsManager} />}
Any help will be highly appreciated.