How to get access to the RIL.java?

441 Views Asked by At

I want to get more information about cellular network, beyond the Google API.I want to get acces to /src/java/com/android/internal/telephony/RIL.java.

How can I do this?

1

There are 1 best solutions below

0
On

You can use Java Reflection to get the internal classes. However, news around Android developers is that Google will soon block access to those APIs (Access by reflection included).

here's a tutorial on Java Reflection: http://tutorials.jenkov.com/java-reflection/index.html