Reputation: 737
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
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