Hook APP 记录(一)
前提了解刷机(线刷、卡刷),第三方Rom包,了解Hook的大致意思,了解Xposed、Magisk面具、墙
我也是刚入手hook这方面,作为学习记录,这方面资料少和大家一起共享学习。
文章目录
前言
准备工作:
1、测试机:我的测试机是红米note5,已是开发版
2、EdXposed安装:是app
3、Magisk Manager安装:是app
大致hook效果功能
一、编写一个简单的目标app
TargetApplication
1、xml界面布局
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.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=".MainActivity">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<TextView
android:id="@+id/show_tv"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="this is msg"
app:layout_constraintTop_toBottomOf="@+id/button"
app:layout_constraintLeft_toLeftOf="parent"
app:layout_constraintRight_toRightOf="parent"
/>
</androidx.constraintlayout.widget.ConstraintLayout>
2、MainActivity
class MainActivity : AppCompatActivity(), View.OnClickListener {
var btn: Button? = null
var tv: TextView? = null
private var msg = "null"
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
btn = findViewById<Button>(R.id.button)
tv = findViewById<TextView>(R.id.show_tv)
btn?.setOnClickListener(this)
}
override fun onClick(v: View?) {
Toast.makeText(this@MainActivity, "123", Toast.LENGTH_LONG).show()
}
}
二、编写Xposed模块,用来hook目标APP
TestXposed APP
1.引入依赖
引入接口包