Skip to main content

Posts

Showing posts from April, 2016

Android Hooking: Writing Xposed Modules

1. Declare the module in  AndroidManifest.xml < manifest xmlns:android = "http://schemas.android.com/apk/res/android"     package = "com.example.xpomodfc"     android:versionCode = "1"     android:versionName = "1.0" >     < uses-sdk         android:minSdkVersion = "8"         android:targetSdkVersion = "15" />     < application         android:allowBackup = "true"         android:icon = "@drawable/ic_launcher"         android:label = "@string/app_name"         android:theme = "@style/AppTheme" >           < meta-data             android:name = "xposedmodule"             android:value = "true" />         < meta-data             android:name = "xposeddescription"             android:value = "List APP Modules and hook Some funtions" />         < meta-data