0

is it possible to access and control all outgoing intent from my app? i use some library in my project that sends intent to start other app (for ads) because that library is compiled i have no access to the source code.

i wonder if there is any way to block or control all intent sent by my app.

if you know any other way to prevent that app to start (ads) please tell me.

i think because my app start the other app, there is a way to stop it.

arsenal
  • 199
  • 1
  • 1
  • 13
  • You might be able to use reflection on the library and hook the google API calls but you have to check the licensing scheme for the added library so that you do not do something illegal. http://stackoverflow.com/questions/1258562/rewriting-method-calls-within-compiled-java-classes – mach Sep 26 '14 at 06:17
  • thanks, i will research in 'reflection'. right? – arsenal Sep 26 '14 at 06:27
  • can i extends from that library's classes and @Override Starting intent method? – arsenal Sep 26 '14 at 06:41
  • thank you so so mach 'mach' , yours truely, i appreciate. please answer so i can accept. – arsenal Sep 26 '14 at 11:09

1 Answers1

0

You might be able to use reflection on the library and hook the google API calls but you have to check the licensing scheme for the added library so that you do not do something illegal.

Community
  • 1
  • 1
mach
  • 8,315
  • 3
  • 33
  • 51