How i can build your sources ?
How i can build your sources ? Project needed in some libs com.android.internal.telephony etc.
Building the project from its sources is a bit weird but working. The process described in a blogpost I wrote months ago (http://virtualabs.fr/Class-0-SMS-reloaded) is actually working for some old versions of Android (2.3 at least). Recent versions of the OS required an improved rebuild, and Eclipse's ADT plugin still need to be patched to allow access to com.android.internal.* stuff.
Once done, building the app is straightforward, signing and installing it a little more complex but still well documented. If you're stuck in the process, do not hesitate to ask for more info. I've recently built an improved version of android.jar (for android version 4.2) containing the whole framework classes, including the internal stuff.
Hey, I'm interested in your solution about zero sms (because I actually need to send any kind of sms with any UDH). Trying to get it working on Android 4.1. Can you advance me - is your old manual from http://virtualabs.fr/Class-0-SMS-reloaded actual for Android 4+ ? I mean can I do same procedures but with Android 4+ and get to internal API?
Well,
The procedure to follow for Android 4.1 is slightly similar, but things have changed since Android 2.3. I'm actually trying to figure out how to send raw PDUs on newer versions of Android (4.X), but this is not an easy task ;).
The procedure described i6n http://virtualabs.fr/Class-0-SMS-reloaded works for android 2.3 only, if I remember well (the android.jar rebuild part).
On Wed, Jan 14, 2015 at 10:29 AM, Andrii Gorishnii <[email protected]
wrote:
Hey, I'm interested in your solution about zero sms (because I actually need to send any kind of sms with any UDH). Trying to get it working on Android 4.1. Can you advance me - is your old manual from http://virtualabs.fr/Class-0-SMS-reloaded actual for Android 4+ ? I mean can I do same procedures but with Android 4+ and get to internal API?
— Reply to this email directly or view it on GitHub https://github.com/virtualabs/ZeroSMS/issues/1#issuecomment-69889999.
I see, thanks for info!
I was actually trying to see how SmsManager.sendDataMessage acts internally (just need to find proper android sources). From documentation it's not clear can I pass UDH and/or SMS-SUBMIT PDU there or not.
Maybe that would be easier then...