Reputation: 55
It's not like this before. I watched a lot of videos to learn how to do it, but none of them tell me that part. What should I do with the manifest file? How do I add ads successfully?
I'm new to this. Please help me.
<meta-data
android:name="com.google.android.gms.ads.ca-app-pub-1843350439017364~2248748181"
android:value="[ca-app-pub-1843350439017364~2248748181]" />
Upvotes: 0
Views: 286
Reputation: 428
just add your id without [ ]
like this:
<meta-data
android:name="com.google.android.gms.ads.APPLICATION_ID"
android:value="ca-app-pub-3940256099942544~3347511713"/>
you can use this version of Admob library if you want to work like videos that you watch:
implementation 'com.google.android.gms:play-services-ads:16.0.0'
Upvotes: 0