我正在尝试将开源Android应用程序改编为我自己的项目,我需要删除Android广告。我试图删除它们,但我不知道如何,我总是在这里和那里得到错误。有没有简单的方法呢?
感谢。
答案 0 :(得分:0)
试试吧......
http://stackoverflow.com/questions/4549401/correctly-disable-admob-ads
http://stackoverflow.com/questions/13323097/in-app-purchase-remove-ads
请检查以上链接,它会对您有所帮助。
从您的应用程序中删除以下代码
AdView adView = (AdView) this.findViewById(R.id.adView);
adView.loadAd(new AdRequest());
<xmlns:ads="http://schemas.android.com/apk/lib/com.google.ads"
android:id="@+id/adView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
ads:adSize="BANNER"
ads:adUnitId="a1513ffd4f3e17c" />