apk去多盟广告

多盟广告的添加方法见别人的日志http://blog.csdn.net/wop_niaoren19870227/article/details/7233254

近期一朋友说要去青年文摘的广告,于是看了看。360手机卫士搜了下,有4个版本,选了个有广告的练手了,

青年文摘·快点2012.02  ,远行发现是多盟的广告。

1.首先apktool反编译,查看AndroidManifest.xml ,有声明如下<activity android:theme="@*android:style/Theme.Translucent" android:name="cn.domob.android.ads.DomobActivity" /> 确定是多盟的广告了
2.去res\layout目录下,看到有一个buttons.xml,有声明 <cn.domob.android.ads.DomobAdView android:id="@id/adView" android:layout_width="fill_parent" android:layout_height="wrap_content" and
这个就是广告的显示区,在这里,我们把android:layout_width="fill_parent" android:layout_height="wrap_content" 改为 android:layout_width="0.0dip" android:layout_height="0.0dip",让它不显示
3.我猜测广告的下载地址包含domob.cn字段,于是去smali文件夹,检索该字段,有5处网址引用, 于是将这些网址改为无效网址。
4.apktool打包修改后的文件夹,并对生成的apk签名。


你可能感兴趣的:(apk去多盟广告)