Mike
Mike

Reputation: 737

Dynamic linking on mobile platforms

I have heard that the iPhone does not support dynamic linking. I want to know whether any mobile platforms support dynamic linking, such as Android or BlackBerry?

Upvotes: 0

Views: 467

Answers (3)

Chris Thompson
Chris Thompson

Reputation: 35598

Android is built on Linux and supports dynamic linking. However, it is unlikely that as an application developer you would end up using this functionality as any native code you use in your application will not be on the library path and consequently must be loaded explicitly. That said, all calls to native methods that are part of the Android system are dynamically linked.

Upvotes: 1

vadymweb3
vadymweb3

Reputation: 11

In Android you can do it : Dynamic linking

Upvotes: 0

jasper
jasper

Reputation: 3474

windows mobile does

Upvotes: 0

Related Questions