Open AnKoCare opened 1 month ago
Hello, I would like to understand a bit more about your use case. I notice you have a canvas for placing the ad. Instead of Native Ads, did you consider Native Overlays. Native Overlays have the advantage of supporting Video ads as well as mediation. Also the SDK takes care of rendering ad so you don't have to lay out individual elements such as call to action, headline, etc.
Hello, I would like to understand a bit more about your use case. I notice you have a canvas for placing the ad. Instead of Native Ads, did you consider Native Overlays. Native Overlays have the advantage of supporting Video ads as well as mediation. Also the SDK takes care of rendering ad so you don't have to lay out individual elements such as call to action, headline, etc.
Thank for your reply, I will try it.
I am facing the same issue. The request and match rate for native ads are being counted, but impressions remain at zero. I checked the sample project for native overlay ads, but since native overlay ads did not fit well with the app’s UI, I need to use native ads.
Unity version : 2021.3.45f1 Google Mobile Ads Unity plugin version: 9.4.0 GoogleMobileAds-native : 7.4.0
The NativeOverlay ads are quite customizable using the NativeTemplateStyle as demonstrated here. I would like to understand your use case better. Unless your application has 3D elements, the NativeOverlay should ideally work for most cases. I would encourage against using the Native Unity Plugin since its not being maintained currently.
The NativeOverlay ads are quite customizable using the NativeTemplateStyle as demonstrated here. I would like to understand your use case better. Unless your application has 3D elements, the NativeOverlay should ideally work for most cases. I would encourage against using the Native Unity Plugin since its not being maintained currently.
I tried customizing various aspects using NativeTemplateStyle, but it didn’t match my app’s UI. With NativeTemplateID.Medium, the ad takes up more than half the screen on an iPhone SE3, while NativeTemplateID.Small feels more like a banner ad. Additionally, AdPosition doesn’t allow for fine adjustments, making it difficult to use for purposes other than simply displaying ads.
[REQUIRED] Step 1: Describe your environment
[REQUIRED] Step 2: Describe the problem
Steps to reproduce:
Hi everyone, I am currently working on native advertising and have referenced the following source: https://youtu.be/M-XdptsCWtQ?si=PUZS3HU2RWNDwa56
I built the device and tested everything fine, native ads load normally, clicks will redirect to the store, but the problem is that Admob does not record the display and clicks. Everything like banners, inter, bonus ads work normally.
I have consulted documents in many support groups but have not found any effective way (have updated the ads sdk to the latest version), hope to receive support from everyone.
Relevant Code:
// This is code load and register native ads
region NativeAds
// This is code call request native ads public class PanelAdNative : MonoBehaviour { [SerializeField] private GameObject adNativePanel; [SerializeField] private Image adIcon; [SerializeField] private Image adChoices; [SerializeField] private Text adHeadline; [SerializeField] private Text adBodyText; [SerializeField] private Text adCallToAction; [SerializeField] private Text adAdvertiser; private bool isDestroy; private bool isHiddenAdsNative = false; void Awake () { adNativePanel.SetActive (false); //hide ad panel }
// This is issue // This is set up native ads