Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Android has it's NDK to handle native code. I was just wondering how deep you can go with low level programming on this platform - whether you can for example control what the phone transmits through the GSM/UMTS network or see the raw data that are received.

Is working with the embedded phone modem generally possible on this/other platforms within the scope of their APIs?

I presume that interfering with the lower communication layers (like adding compression to the voice data, change of encoding and so on) means playing with the firmware of the communication modules and is generally something that the phone manufacturers don't support officially.

Anyway is there something about this topics you can recommend to read or search for?

share|improve this question
Normally, I think you won't be able to reach low-level APIs. Android is open-source, you can check how it works on low-level, but your application will not be able to reach the modem in a low-level way, because the APIs are not public. Moreover, the NDK maintains a list of stable APIs. Using anything else will mean that your app might not work on a future device (as the API might have changed in the meantime). – Thomas Calc Oct 8 '12 at 17:48
Thank you for your answer. Can you please be more specific about the other low-level APIs? Im targeting a specific device, so future portability is not a problem right now. Should I look for some device specific API then? – NumberFour Oct 8 '12 at 19:46
Checking for device-specific APIs is a good idea (the manufacturer might have such), but I'm afraid they won't have any public APIs (as they don't expose such critical functionality usually), so you will need to explore everything via NDK and low-level research. Unfortunately, I don't know this field, so I can't really help more. I'll post some links in an answer (hopefully you will get a much better and useful answer too). – Thomas Calc Oct 8 '12 at 20:48

1 Answer

A public API package (it's not really rich in terms of your requirements): http://developer.android.com/reference/android/telephony/package-summary.html

About the low-level APIs (the Radio Interface Layer of Android), you can read here: http://www.netmite.com/android/mydroid/development/pdk/docs/telephony.html

About implementing (modifying) the RIL: http://www.netmite.com/android/mydroid/development/pdk/docs/telephony.html#androidTelephonyRILImplementing

In this case, however, you need to touch the Android source code, so for application development, it is not an option.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.