Xposed模块入门

其实之前写写过一些xposed模块。但是每次要用xposed去hook的时候还是要去网上搜索一遍怎么写。所以这次还是记一下笔记好了。虽然手机已经root,但是还是觉得每次要重启手机模块才能生效太麻烦,所以用了vitualXposed这个软件,真心好用,免root,重启超级快时间为0.下面就开始吧。

1. 创建项目

选择了noActivity

2. 配置build.gradle

不同版本的api配置看链接
我一般都是不直接下载的,感觉这样配置比较方便。

apply plugin: 'com.android.application'

android {
    compileSdkVersion 26
    buildToolsVersion "26.0.0"
    defaultConfig {
        applicationId "com.example.xposedtest"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:26.+'
    provided 'de.robv.android.xposed:api:82'
    testCompile 'junit:junit:4.12'
}

3. 配置AndroidManifest.xml

主要在Application中添加三个<meta-data>三个分别是:是否启动模块、模块的描述、模块的最低版本

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

    package="com.example.xposedtest">

    <application
        android:allowBackup="true"
        android:icon="@mipmap/ic_launcher"
        android:label="@string/app_name"
        android:roundIcon="@mipmap/ic_launcher_round"
        android:supportsRtl="true"
        android:theme="@style/AppTheme">
        <meta-data
            android:name="xposedmodule"
            android:value="true" />
        <meta-data
            android:name="xposeddescription"
            android:value="xposedtest01" />
        <meta-data
            android:name="xposedminversion"
            android:value="82" />
    </application>

</manifest>

4. 编写代码

这个就没什么好说的了,大家都不一样的

public class xposedtest implements IXposedHookLoadPackage {
    private static String  TAG = "hookmain";
    @Override
    public void handleLoadPackage(XC_LoadPackage.LoadPackageParam lpparam) throws Throwable {
        Log.i(TAG,"Loaded app: "+ lpparam.packageName);
        if(lpparam.packageName.equals("com.example.testproxy")){
            XposedBridge.log("找到testproxy");
            XposedHelpers.findAndHookMethod("com.example.testproxy.ProxyApplication",
                    lpparam.classLoader, "attachBaseContext", Context.class, new XC_MethodHook() {
                        @Override
                        protected void beforeHookedMethod(MethodHookParam param) throws Throwable {
                            super.beforeHookedMethod(param);
                            Context mContext = (Context)param.args[0];
                            Log.i(TAG, mContext.getApplicationInfo().toString());
                        }
                    });
        }
    }

5. 配置xposed_init

创建assets文件夹,在文件夹中创建xposed_init文件,里面写上模块的入口点

com.example.xposedtest.xposedtest

总结

上面几点,1、2、3、5每次基本都是一样的。

    原文作者:To_Be_Better
    原文地址: https://www.jianshu.com/p/d1b26a8a1ac4
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞