Questions tagged [xposed]

Xposed is a framework allowing to "hook into", that is, modify behavior of any function on an Android device. This is achieved via modifying "Zygote", which is the heart of the Android runtime. Xposed is a cheap replacement for a custom rom with custom code.

To learn more: Development Tutorial; Xposed Module Repository

144 questions
0
votes
1 answer

How does Xposed framework modify Android status bar?

An app in Xposed Framework named "Network Speed Indicator" can make net speed shown on android status bar. How to achieve this? I looked up some other questions like this oneCustomizing android status bar.It said "This has nothing to do with…
Zhang
  • 79
  • 12
0
votes
1 answer

Xposed: How to hook method that using PendingIntent

I want to fake location in android. In android, there is a way for getting location using PendingIntent. Here is an example: LocationManager service = (LocationManager) getSystemService(LOCATION_SERVICE); String proximitys =…
Trần Kim Dự
  • 5,872
  • 12
  • 55
  • 107
0
votes
1 answer

Xposed Framework hooking Samsung s7 edge system processes?

Im just getting into developing modules for Xposed Framework. I get a basic module working, just a module that does nothing but saying that its loaded and prints to log. Next step was to try hooking the Clock in SystemUI, following rovo89's…
user3650211
  • 3
  • 1
  • 7
0
votes
1 answer

how can i hook if return type is a list in xposed?

here is my code...can't figure out how should be the return type written if (lpparam.packageName.equals("com.demo.data")) { XposedBridge.log("we are in Module!"); findAndHookMethod("com.demo.data.utils.Utils",…
John
  • 33
  • 2
  • 8
0
votes
1 answer

Which API decides if the call is going through VoLTE or VoWiFi in Android?

I want to write an xposed module where I can redirect VoLTE calls through VoWiFi. I want to know which method decides if the call is going through VoLTE or VoWifi and I would hook that method and get the work done. Basically using WiFi I want to…
Nayan Kurude
  • 173
  • 12
0
votes
2 answers

Xposed module for whatsapp implement last seen tweaks

I've developed an xposed module for whatsapp. http://forum.xda-developers.com/xposed/modules/mod-whatsapp-extensions-add-extra-t3452784 I wanted to add feature to hide our own last seen still see others or report a fake last seen for eg: 1 Jan…
Suraj
  • 184
  • 1
  • 14
0
votes
2 answers

Xposed call private method not working

I tried to call a private method inside an abstract class. I used : XposedHelpers.findAndHookMethod("com.kabouzeid.gramophone.ui.activities.tageditor.AbsTagEditorActivity", lpparam.classLoader, "getTrackNumber",String.class, new XC_MethodHook(){ …
materight
  • 527
  • 8
  • 22
0
votes
2 answers

Android 4.4 get hardware key ids (which are actually available on the device)

I'm working on an Xposed Module which uses hardware buttons (like Power, Volume Up, etc) to initiate some actions. I'd like to add a "Settings" UI so the user can chose which button he want's to use. So far, I found several possible solutions but…
xxtesaxx
  • 6,175
  • 2
  • 31
  • 50
0
votes
1 answer

How to use .so file in Xposed module project?

How to turn this Hello-JNI project https://codelabs.developers.google.com/codelabs/android-studio-jni/index.html?index=..%2F..%2Findex#0 to an Xposed module and use method "getMsgFromJni" inside hooking methods?
0
votes
1 answer

Xposed - hook private constructor

I'm using the Xposed module to analyze an android app, and I'm trying to hook a constructor that's declared as private, but it's unable to find the class. Is it because the constructor is private or is there another issue? The constructor is:…
Erin
  • 29
  • 1
  • 8
0
votes
1 answer

Android XPOSED Code Injection

I have a question and would really appreciate it if someone shortly provides me with some guidance. I wanted to add end-to-end encryption to SnapChat app. Is it doable using XPOSED framework to add encryption (per user)? PS. Currently SnapChat uses…
0
votes
1 answer

Xposed Hook Constructor in Nested Class

I am trying to hook the constructor of a nested class using Xposed, but I'm getting a ClassNotFoundException for the nested class (SettingsAdapter). However, there is another method in the nested class that it has no trouble hooking. Is there…
Erin
  • 29
  • 1
  • 8
0
votes
1 answer

apply changes after reboot, Source code

I'm making a Xposed applications and want to know if there is a way to apply the interface changes after restarting the Phone, for example if I want to change the color of the notification bar, i select the color, and the change applied after…
0
votes
1 answer

android Xposed Module

I'm trying to develop Appliction that use Xposed Module. In my project I take samples off Apps runing on the device I can choose which Apps. In the Xposed Module I can see if one of my Apps is started by a common list, and I don't successed to start…
0
votes
1 answer

Xposed doesn't find a class to hook

I'm trying to develop mi own Xposed module for the telegram app, but when I try to hook the method called "setOnClickListener" Xposed show the following…
rafaelleru
  • 367
  • 1
  • 2
  • 19
1 2 3
9
10