About request.setTesting(true) code line
admob, android
Solution
See this in the link provided by you
Step 6) Disable Testing Mode
Be sure to disable testing mode before deploying to Google Play by changing the value to false, commenting out or deleting the following line from your MainActivity.java
request.setTesting(true);
Problem
I want to include admob in my android PhoneGap app. To include admob, I referred link https://github.com/sainttex/PhoneGap-Android-Native-AdMob My question is about below code line. ``` request.setTesting(true); ``` Must I remove that code line when app on market?