反编译--更改布局文件的文字

2018-06-03  本文已影响16人  猪_队友

我们自己构造一个app,布局就一个TextView,java代码也不用写

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="ssy.com.fapplication.Main2Activity">
<TextView
    android:gravity="center"
    android:textSize="30dp"
    android:text="我的故事"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />
</android.support.constraint.ConstraintLayout>

我们把应用打包

image.png
然后用apktool工具去操作
apktool d -f
D:\Technology\Technology\FanBianYi\apktool\apktool\app-release.apk -o out
这样我们就把apk变成反编译文件
image.png
打开res里面layout布局文件夹,找到相应布局文件,直接打开更改文字
image.png
改完之后,我们要把文件夹打包成app。
apktool b out -o debug.apk
这样我们就得到未签名的apk了。
最后把apk打包。
signapk debug.apk
最后生成sign.apk
image.png

我们需要的工具有apktool 和 signapk ,直接百度下载最近版本的就好。

上一篇 下一篇

猜你喜欢

热点阅读