|
|
|
|
|
by cageface
4976 days ago
|
|
I haven't found this to be the case at all. With the compat libs you can pretty easily target 2.3 and 4.x. And the dynamic layout issues are more than offset by the much greater flexibility of Android's layout managers. An iOS app I'm working on right now has been a nightmare in comparison because we had to port our layouts to the i5 form factor but can't require iOS 6 just to get autologous. Apple really blew that transition. |
|
Also, you can say that the API level differences don't matter because they are hidden by compatibility libraries like The Support Package, but the truth is that those are just the newer APIs re-implemented against the old interfaces. You pay for that extra abstraction with wasted cycles and bloat, and it's an ugly solution. Even still, those libraries aren't perfect: there have been subtle bugs or incompatibilities introduced by their use which are notoriously hard to find. Finally, even if the newer APIs are present on the device, The Support Library will still be used (last I checked, though I think they are working on this).
Less objectively, it's a matter of preference. Some people just prefer objective C to a JVM compilable language.