I had created a banner admob ad using this link. App it was working good. I even got publisher id and I was able to view impressions and clicks from Admob website. But after I completed the development, I uploaded the app on play store and i am not able to view any ads impression/clicks from Admob website though ads are showing inside the app downloaded from playstore. Though Impressions/clicks are showing as long as I am viewing it on test device. But no impression/clicks are updating if I download and use it from google playstore. I have linked the app from playstore. Around 50 people have downloaded the app and it has been 3 days but no update in Impressions/clicks. Now what I need to do to be able to track impressions or clicks. Do I need to get a new publisher ID? If so what are the steps to obtain it. Thanks in advance. Help me I'm new in admob.
I am using this code in the activities where I want to show the ad
import com.google.android.gms.ads.AdRequest;
import com.google.android.gms.ads.AdView;
.
.
AdView mAdView = (AdView) findViewById(R.id.adView);
AdRequest adRequest = new AdRequest.Builder().build();
mAdView.loadAd(adRequest);
Inside android manifest file
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
.
.
.
<activity
android:name="com.google.android.gms.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout|uiMode|screenSize|smallestScreenSize"
android:theme="@android:style/Theme.Translucent" />
In the strings.xml file
<string name="banner_ad_unit_id">ca-app-pub-3**************3/*********7</string>
Inside the activities xml I have used the following code
<com.google.android.gms.ads.AdView
android:id="@+id/adView"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:layout_alignParentBottom="true"
ads:adSize="BANNER"
ads:adUnitId="@string/banner_ad_unit_id">
</com.google.android.gms.ads.AdView>
Also, I'm using two different email-Ids the one for admob is different from that of play store id from which I have uploaded the app. Here's the link of the screenshot of the admob.