可以把xvideos apk 这个软件发给我吧,非常感谢老师的辛勤付出

自己动手来修改--APK软件反编译&去广告&图文教程
之前用apktool
反编译apk需要用命令行操作,刚发现一个图形界面的反编译工具非常方便,顺手写个简单教程方便大家自行修改(有好东西修改完别忘了发出来分享下哦)。
软件下载地址
此软件需要安装JDK
一&&反编译apk
解压下载的apktool.rar ,运行apktool.exe
选择需要反编译的apk文件 ( 文件最好改成英文名,中文名的话修改完编译回去的时候会没有文件)
选择反编译的文件存放目录,然后点反编译APK
结果如下图
我的apk文件是存放在c:\apk 文件夹内(你可以放在你自己需要的文件夹内,比如d:\ceshi ),
操作完成后,在c:\apk 目录下,会出现一个名为majiang.apk.decode
的文件夹,这个文件夹里就是反编译后的文件内容(虽然用解压软件能直接解压APK,但是文件都是编译过的,打开会显示乱码)
然后我们可以在这个文件夹内修改文件来实现去广告,&&也可以替换相同的图片文件,来实现自定义游戏(这个很简单,只要注意自己替换的图片文件的大小和格式和源文件一样就可以了)
2楼去广告简单步骤
二&&编译回apk
修改完后,我们要把反编译的文件夹再编译回apk程序。
如下图,在右边那排里选择反编译后的文件夹,和准备存放输出的apk的文件夹(以我的为例,选择的反编译的文件夹是c:\apk\majiang.apk.decode,输出的文件夹是c:\apk,
你可以选择别的目录,比如d:\ 下)
然后点编辑APK。结果就如下图。
这样在c:\apk 目录下就会出现一个 MAJIAN~1.DEC.apk
三&&给apk签名
这样还没有完, 修改完后要重新签名,没有签名的文件安装完是运行不了的。
点击软件下方的 APK签名
在弹出的程序中,选择需要签名的apk文件(比如刚刚生成的MAJIAN~1.DEC.apk),和签名后的apk文件输出位置(我还是选的c:\apk
文件夹下,为避免混淆,你可以选择其他文件夹)
然后点制作签名 ,如下图。
这样就会在输出文件夹生成 签名过的apk文件, 比如 在我的c:\apk
文件夹下&&生成了一个
majian~1_signed.apk&&文件。
然后就可以把这个文件正常安装了。
这里要注意一下, 更换过签名的软件 安装前一定要先把源程序卸载后再安装。不然安装后不能运行。
(说明:这种简单修改只是屏蔽掉广告显示,实际上广告还是走流量的,不过对C901来说基本都是WIFI上网,走流量也没什么影响,关键是看着舒服就行)
首先, 以管理员发布的 美少女麻将馆 游戏来演示去广告过程
广告如下图
首先,我们进入反编译后的文件夹,以我的为例
C:\apk\majiang.apk.decode\res\layout&&目录下
用记事本打开main3.xml
(注:不同的程序广告所在的文件不一样,如果main.xml里没有,可以查看一下别的文件里,一般都是在res\layout
目录下的xml文件里。)
可以看到下面一段代码
这段代码是广告所占的宽度 高度,背景颜色,文字颜色的设置参数。
(识别是否是相关广告的代码,简单的方法是查找&&AdView&&比如这段
“adlib_android.WoobooAdView android:id="@id/ad1"
”)&com.wooboo.adlib_android.WoobooAdView
android:id="@id/ad1" android:layout_width="fill_parent"
android:layout_height="fill_parent"
adsdk:backgroundColor="#" adsdk:textColor="#ffffffff"
adsdk:testing="false" adsdk:refreshInterval="30"
复制代码在这段代码里,我们只要把广告显示区域的高宽都改成0,这样AD就不会显示了,&&layout_width
是宽度&&layout_height 是高度
修改完后如下&com.wooboo.adlib_android.WoobooAdView
android:id="@id/ad1" android:layout_width="0.0px"
android:layout_height="0.0px" adsdk:backgroundColor="#"
adsdk:textColor="#ffffffff" adsdk:testing="false"
adsdk:refreshInterval="30" /&
复制代码这样广告没有了显示区域就看不见了。不过由于这个的广告位置还加入了FrameLayout布局标签来固定了区域,所以虽然广告不见了,但是还占用着那块高度。
所以在这个程序里, 我们要把这个布局占用的高度也改成0
找到下面代码&FrameLayout
android:layout_width="fill_parent"
android:layout_height="48.0px"&
复制代码改成&FrameLayout
android:layout_width="fill_parent"
android:layout_height="0.0px"&
复制代码就此大功告成,保存文件编译回APK并签名后安装即可(再次说明,安装重新签名后的APK文件前要先把之前安装的原版卸载掉,不然运行会报错)
效果如下图。
--------------------------我 是 华
丽的分割线--------------------------
顺便再演示一个 没有用布局定位高度的软件。以g_sunway兄发的 “Alchemy炼金” 游戏为例
软件原帖地址
去广告前的截图
下面我们开始去广告
用apktool软件把 Alchemy.apk 反编译,以我的为例,反编译到
c:\apk&&下。
进入目录 C:\apk\alchemy.apk.decode\res\layout
用记事本打开 main.xml
直接把下面代码里的高度和宽度都改成0.0px 。com.admob.android.ads.AdView
android:id="@id/ad" android:layout_width="fill_parent"
android:layout_height="wrap_content"
复制代码改成com.admob.android.ads.AdView android:id="@id/ad"
android:layout_width="0.0px" android:layout_height="0.0px"
复制代码保存退出, 然后用apktool编译回APK文件并签名
--------------------------我 是 华
丽的分割线--------------------------
至于替换图片, 在反编译后的文件里里找到图片文件, 然后用其他图片替换即可, 前提是 图片的尺寸和格式必须要和原图片一样。
========================================================================
所需要用到的工具有:apktool,JD-GUI,dex2jar,Apk文件签名工具
dex2jar下载地址:http://laichao.googlecode.com/files/...7-SNAPSHOT.zip
JD-GUI下载地址:
windows版JD-GUI:http://laichao.googlecode.com/files/jdgui.zip
Linux版JD-GUI:http://laichao.googlecode.com/files/...ux.i686.tar.gz
apktool下载地址:
http://code.google.com/p/android-apktool/
Apk文件签名工具下载地址:
自己百度吧
1.先把下载来的新浪微博apk程序,用解压工具(winrar)解压出来,解压出来的目录下有个classes.dex文件,用dex2jar把它反编译成jar。
2.用JD-GUI打开这个jar文件,找com.sina.weibo\HomeListActivity,打开直接看代码了。。。(找去广告的关键地方,自己根据情况搜索关键字,比如:AdView)
很容易就在protected void onCreate(Bundle
paramBundle)函数里面看到,在初始化广告窗口的代码:
&&& IntentFilter
localIntentFilter3 = new IntentFilter();
localIntentFilter3.addAction("com.sina.weibo.action.AdCenter.show");
BroadcastReceiver localBroadcastReceiver3 = this.mAdR
&&& Intent
localIntent3 = registerReceiver(localBroadcastReceiver3,
localIntentFilter3);
initAdView();
initAdView:
& private void initAdView()
&&& Animation
localAnimation1 = AnimationUtils.loadAnimation(this,
this.mAdInAnimation = localAnimation1;
&&& Animation
localAnimation2 = AnimationUtils.loadAnimation(this,
this.mAdOutAnimation = localAnimation2;
&&& ImageView
localImageView1 = (ImageView)findViewById();
&&& this.mAdBar1
= localImageView1;
&&& ImageView
localImageView2 = (ImageView)findViewById();
this.mAdClose1 = localImageView2;
&&& ImageView
localImageView3 = (ImageView)findViewById();
&&& this.mAdBar2
= localImageView3;
&&& ImageView
localImageView4 = (ImageView)findViewById();
this.mAdClose2 = localImageView4;
HomeListActivity.14 local14 = new HomeListActivity.14(this);
HomeListActivity.15 local15 = new HomeListActivity.15(this);
this.mAdBar1.setOnClickListener(local14);
this.mAdClose1.setOnClickListener(local15);
this.mAdBar2.setOnClickListener(local14);
this.mAdClose2.setOnClickListener(local15);
所以去广告,很简单,只要把onCreate那五行代码给NOP掉就OK了,不过,就这样五行代码nop掉,广告是去了,但退出时,微博客户端还是会崩溃。原因是onCreate注册了一个广播接收但被NOP掉了,但在在销毁窗口的时候,在这个
protected void
onDestroy()函数里面有移除这个广播接收,所以就造成崩溃了。所以onDestroy函数下面这两句代码也要nop!
BroadcastReceiver localBroadcastReceiver2 = this.mAdR
unregisterReceiver(localBroadcastReceiver2);
3.使用apktool把整个新浪微博的apk程序给反编译出来,在反编译出来的程序目录下,找smali\com\sina\weibo\HomeListActivity.smali这个文件,直接记事本打开。搜“com.sina.weibo.action.AdCenter.show”定位到onCreate函数,把下面这几行给删除掉。
&&& new-instance
v1, Landroid/content/IntentF
invoke-direct {v1},
Landroid/content/IntentF-&&init&()V
&&& .local v1,
myAdIntentFilter:Landroid/content/IntentF
&&& const-string
v3, "com.sina.weibo.action.AdCenter.show"
invoke-virtual {v1, v3},
Landroid/content/IntentF-&addAction(Ljava/lang/S)V
&&& iget-object
Lcom/sina/weibo/HomeListA-&mAdReceiver:Landroid/content/BroadcastR
invoke-virtual {p0, v3, v1},
Lcom/sina/weibo/HomeListA-&registerReceiver(Landroid/content/BroadcastRLandroid/content/IntentF)Landroid/content/I
invoke-direct {p0},
Lcom/sina/weibo/HomeListA-&initAdView()V
再搜索下"protected onDestroy()"定位到onDestroy函数里,把这几行也给删除掉!
&&& iget-object
Lcom/sina/weibo/HomeListA-&mAdReceiver:Landroid/content/BroadcastR
invoke-virtual {p0, v0},
Lcom/sina/weibo/HomeListA-&unregisterReceiver(Landroid/content/BroadcastR)V
4,最后还要去删除掉的ADCenter服务!不然这个服务会一直在后台运行着,看着某地方都会疼!打开在新浪微博的apk程序反编译出来的程序目录下的AndroidManifest.xml文件。删除掉下面这几行,就可以去掉AdCenter服务。
android:name=".business.AdCenter"&
&&&&&&&&&&&
&intent-filter&
&&&&&&&&&&&&&&&
&action android:name="com.sina.weibo.action.speed"
&&&&&&&&&&&&&&&
android:name="android.intent.category.DEFAULT"
&&&&&&&&&&&
&/intent-filter&
&/service&
5,用apktool把那个修改去广告后的新浪微博反编译的程序目录编译成apk文件。最后在打上签名,去广告版就完成了
============================================================================
去广告前需要3样, APKTOOL(去广告的程序),
JAVA(运行程序的环境), notepad++ (字符编辑)
东西我会传到附件还有迅雷网盘里,自行下载!&
&&&APK程序我以游戏Girl
Fart v1.1.5为例
JAVA是必须要下载的,没有它不能运行去广告程序!&&这里是官网地址, 官网有详细解释,不多啰嗦.
http://www.java.com/zh_CN/download/manual.jsp?locale=zh_CN
Apktool.zip 解压这个文件, 目录你随便, 注意的是将目录下的apktool.jar和signapk.jar放到C盘WINDOWS下.具体什么原因我也不了解,本人起初没放,运行APKTOOL确实出现过错误,如果你有C盘情结的话,去完广告请自行删除!
这时游戏的界面. 广告我很反感!
运行apktool.exe, 是绿色的图标
点击选择APK文件
就是你要去广告的APK,
点击文件保存目录,
地址你随便,
然后点击反编译APK
这里要解释的是, 反编译完会生成个文件夹, 文件夹在你设置的保存目录
这一步需要用到的notepad++ 软件目录随意
现在就是去广告的步骤,简单说下广告,APK广告供应商有 Admob和Google Ads
所以我们要找的就是admob.com和个google.com 也可以搜索单个关键字
点击快捷键ctrl+f 点击上方标签文件查找, 填写查找目标,选择查找目录, 也就是刚才你反编译后生成的文件夹,
选择匹配大小写和查找模式
看见红色的字了吧,让我们阉了它! 我们将http://开头的字符串改成0.0.0.0或者127.1.1.1等无效的ip。使广告源无法访问。改完记得保存文件.如果是非IP地址,那么将字符串该乱,例如google.com改成a.com
要提醒的是改的时候"http://r.admob.com/ad_source.php" 把中间的地址改成"0.0.0.0",即
符号不要删掉!
好,我们来找google.com
修改同上全部修改好后退出.
下一步我们需要编译去除广告后的APK了,
点击APKTOOL,
右面编译,不用我多啰嗦了吧!
最后一步,APK签名,不签名的程序运行不了. 选择刚才编译完的APK,
选择签名后APK目录 这些不用啰嗦
一切大功告成,赶紧拿来小米测试吧!
此帖磨难太多,耗尽1小时,
中间忘记保存又从新来写,
相当苦恼.&&您拿完东西别走,留下脚印累不到您,
别让此贴沉了!!&&小弟在此深表感谢!!
本帖作为申请进入顾问团第一帖!!&
最后谢谢大家支持!!!
已投稿到:
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。掺水油, 积分 353, 距离下一级还需 147 积分
掺水油, 积分 353, 距离下一级还需 147 积分
掺水油, 积分 353, 距离下一级还需 147 积分
主题 : 1|帖子 : 86|积分 : 353
该用户从未签到
| 来自:OnePlus5 |
原油, 积分 6, 距离下一级还需 44 积分
原油, 积分 6, 距离下一级还需 44 积分
原油, 积分 6, 距离下一级还需 44 积分
主题 : 0|帖子 : 2|积分 : 6
该用户从未签到
Vx:wifi881234
(5.62 KB, 下载次数: 5)
18:59 上传
深圳市万普拉斯科技有限公司 版权所有(xvideos apk
xvideos apk
在 UpdateStar: xvideos apk
xVideos Video Downloader is a small, fast and useful video downloader. Paste the URL of a video into the program, press Start and the AVI, MPEG or FLV file will be downloaded into the selected folder.
KOPLAYER APK Install is a permanent free and Ad-free utility for your PC. You can download all applications of Google Play and synchronize to install them to your Android phones without limitation.
APK Downloader is a free program that will allow you to download an APK file from the Android Market directly to your desktop rather than to your device.
Your Desktop APK Downloader.Download Android Apps on PC or Mac!
Unified Remote is a set of applications that allows controlling your PC remotely. It works as a universal remote when you install the server software on your computer and the client APK on your Android smartphone.
Remo Recover for Android is specially designed to recover data from Android phones. The application vigorously scans both the internal and external phone memory of the device, to identify lost or deleted files, including Android …
Detect and download Flash SWF files all around. Get and then save Flash SWF apps into local machine, including Flash banner, Flash animation, Flash movie player and Flash game.
Simple and fast one key root cell phone, mobile access to root privileges, manage mobile phones, streamline the system.
xvideos apk 的搜尋結果
描述包含: xvideos apk
Your Desktop APK Downloader.Download Android Apps on PC or Mac!
Unified Remote is a set of applications that allows controlling your PC remotely. It works as a universal remote when you install the server software on your computer and the client APK on your Android smartphone.
Remo Recover for Android is specially designed to recover data from Android phones. The application vigorously scans both the internal and external phone memory of the device, to identify lost or deleted files, including Android …
KOPLAYER APK Install is a permanent free and Ad-free utility for your PC. You can download all applications of Google Play and synchronize to install them to your Android phones without limitation.
Detect and download Flash SWF files all around. Get and then save Flash SWF apps into local machine, including Flash banner, Flash animation, Flash movie player and Flash game.
APK Downloader is a free program that will allow you to download an APK file from the Android Market directly to your desktop rather than to your device.
Simple and fast one key root cell phone, mobile access to root privileges, manage mobile phones, streamline the system.
Online Video Hunter -
Professional FLV Downloader, 1000+ websites supported.
Online Video Hunter allows you to easily download flv videos from …
Maven Android Plugin makes it easier to do Android application development with Maven. It lets you focus on programming, while Maven Android Plugin takes care of compiling everything correctly and building the apk file.
Have you ever meet the problems as below?Your Android device become freezes and slowerThere are too many bloatware on your Android that you cannot uninstallYour Android always overheats and needs to cool downViruses, trojans and malware …
其他標題包含: xvideos apk
KOPLAYER APK Install is a permanent free and Ad-free utility for your PC. You can download all applications of Google Play and synchronize to install them to your Android phones without limitation.
APK Downloader is a free program that will allow you to download an APK file from the Android Market directly to your desktop rather than to your device.您需要通过验证再能继续浏览 3秒后开始验证
丨 粤ICP备号-10 丨 新三板上市公司威锋科技(836555)
增值电信业务经营许可证:
Powered by Discuz!
(C) Joyslink Inc. All rights reserved 保留所有权利Free Android Apps, Ringtones, Mobile Themes, HD Wallpapers, Games | mobile9
Free Apps, Ringtones, Mobile Themes, Wallpapers For YouE.g., , , .Get Into Action With Android Apps, iOS Games and MoreDownload
to explore new ways to do things or addicting
to keep yourself entertained. Popular ones include , , , .App publisher? Find out how to
to millions worldwide.Customise Your Phone With Wallpapers & RingtonesMake your phone unique by personalising it with beautiful , , best
and more. Those with iPhone can download free
to make your Apple device look great too. Popular ones include , , , .Get Your Groove On With Music & VideosWith thousands of free songs and videos available for free download, mobile9 is the perfect home to everything that entertains you. Listening to top songs and , anywhere is no longer just a dream. Popular ones include , , , .Indulge Yourself With Tons of Books & ComicsLove to read? mobile9 offers
to read online or to download as PDF or EPUB for reading later. In addition, we also provide Naruto manga, One Piece manga and hundreds more to read online for free.
that inspires your day! Popular ones include , , , .Speak Out Loud With Pictures & StickersA picture is worth a thousand words. Download free
to chat with friend, send
and update your
to tell everyone your mood of the day. Popular ones include Or access everywhere by downloading our appsDownload free apps, games, themes, wallpapers, ringtones, and more for phones and tablets. Millions of members are sharing the fun and billions of free downloads served. Get our Android app, iOS app or Windows app from the official app stores today! Find us on

我要回帖

更多关于 非常感谢日语 的文章

 

随机推荐