Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Hook Android Sytem API related to Text Output

In Windows Programming, if you hook TextOut,ExtTextOut,DrawText,DrawTextEx,PolyTextOut,TabbedTextOut etc, you can almost catch the ouput of any software.

Are there similiar system apis you can hook on Android?

I want to capture the output of some apps.

PS: I have root permission! I have got the target android app.

I can even install it on an android emulator on Windows.

like image 224
J.Joe Avatar asked Oct 11 '16 06:10

J.Joe


1 Answers

If you have't root permissions, you can do it only for your own processt, his is not system wide. By using android NDK, as in this example, or this

like image 58
Sergey Nikitin Avatar answered Sep 28 '22 15:09

Sergey Nikitin