安卓软件是免费的,开发者主要收入为广告,本帖提供去广告思路,及教程,供大家参考
第一种,更改广告下载源,使其无法下载
使用rar浏览apk,根目录下将classes.dex 拖出
使用undex将其解包,uddex所在文件夹将新增classes文件夹
用Notepad+ 快捷键ctrl+f 调出搜索窗搜索广告下载源 定位至classes文件夹
将每一个广告下载源都更改为无效地址 如0.0.0.0
保存,双击redex.bat 打包,此时文件夹内新增 out.dex,改名为classess.dex后拖回apk替换原有的即可
Google Ads的广告下载源:
http://pagead2.googlesyndication.com/pagead/afma_load_ads.js
http://pagead2.googlesyndication.com/pagead/afma_load_ads.js
有米广告下载源
http://www.youmi.net
第二种,将广告页面设置为0像素,不显示,从而达到去除广告的目的(不会cd命令的请忽略)
apktool ,反编译 Apk文件,用Notepad++ 定位到res文件夹内,搜索广告代码(d为反编译 b为编译)
android:layout_width="fill_parent" 引号内修改为 0.0dip
android:layout_height="wrap_content" 引号内修改为 0.0dip
android:layout_height="wrap_content" 引号内修改为 0.0dip
最终为 android:layout_width="0.0dip"
android:layout_height="0.0dip"
android:layout_height="0.0dip"
保存,再使用apktool 编译,签名后即可安装
resdmob的广告代码:
com.admob.android.ads.AdView
com.admob.android.ads.AdView
Google Ads的广告代码为:
com.google.ads.GoogleAdView
com.google.ads.GoogleAdView
有米广告的广告代码:
net.youmi.android.AdView
APKTOOL (编译,反编译apk) http://dl.dbank.com/c0mz8sjnr9
NOTEPAD++Portable ( 搜索,替换) http://dl.dbank.com/c0w7rudzb3
UNDEX (解包,生成dex) http://dl.dbank.com/c08ss2dvqt