2

I am developing a walkie-talkie application for Android, and would like to know whether RTP and/or SCTP is natively supported in the latest version of android SDK.

From whatever I have dug-up so far, the answer is no.

It seems that support for SCTP is coming in JDK 7. But then, I am not sure how this will work with my android developemnt.

Could you please shed some light over this?

Thanks,

Chaitanya
  • 2,039
  • 4
  • 25
  • 32

1 Answers1

2

No it doesn't support RTP as standard you will have to use a JAVA RTP library.

Android uses a subset of the Java libraries so is not full Java with this in mind it is unlikely that the SCTP support will be implemented natively in Android

Donal Rafferty
  • 19,707
  • 39
  • 114
  • 191