我正在尝试将开源 android 应用程序改编为我自己的项目,我需要删除 android 广告。我试图删除它们,但我不知道如何删除,而且我总是在这里和那里遇到错误。有什么简单的方法吗?
谢谢。
尝试一下....
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" />