TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Is Android development tougher as compared to iOS development

2 pointsby manish_lnmiitalmost 12 years ago
I am iOS developer, when ever I try to implement it, it implemented easily without much efforts. While Android people always struggle to make that design. Is it like Android development is tougher than iOS development. Also why every app first comes on iOS platform?

5 comments

gealalmost 12 years ago
These are different platforms:<p>* UI design is a lot easier on iOS if you use XCode&#x27;s interactive designer. Doing it on Android with Eclipse&#x27;s designer is painful, but I expect that Android Studio will make that easier.<p>* UI design without the interactive designer is easier on Android, because iOS is quite verbose for this<p>* About the code, I have found that iOS&#x27;s APIs are badly designed, and change too often. The API&#x27;s of Android are much more stable, but they can require too much code sometimes (example: setting onclick listeners for elements).<p>* About the tests, it is a lot easier to test for every iOS device, because there are so few (and iOS versions are rapidly deprecated). Android devices have a lot of different OS versions, screen resolutions, CPU, etc. That makes it tougher to test exhaustively.<p>Nevertheless, I have found that Android development is a lot easier than iOS development (at least for me), simply because XCode spends its time fighting me. For Android, I can just bypass Eclipse and work directly in vim with a Makefile, or I can develop in Scala and use SBT. It&#x27;s much more fun that way :)<p>And to answer the last question: apps are primarily developed for iOS because:<p>* it is believed that iOS users are more likely to pay for an app<p>* journalists are often more on iOS than Android (and you want to please them)<p>* CEOs are often more on iOS than Android
评论 #5873525 未加载
gregorkasalmost 12 years ago
Actually it depends on what you&#x27;re trying to do - a good Android developer will spend the same amount of time implementing some of the features as a good iOS developer and some things are easier to do here and some there. The main issue I think is the learning curve, because on iOS you usually have to think about memory allocation (although it got better with ARC), but other than that I wouldn&#x27;t say that either of the platforms is &quot;tougher&quot;.<p>The main reason some apps come to iOS first is better app discovery and a larger user base. If you manage to score a high user base, the monetization is quite awarding so that&#x27;s why developers choose iOS first. Definitely not because of iOS being easier than Android.
评论 #5873559 未加载
bookwormATalmost 12 years ago
Android is a cross platform technology that is used by many companies to create all kinds of device software.<p>Building an app for the Samsung Galaxy S is about as hard as making an app for the iPhone. But an App that runs on both the Galaxy S Software and the HTC One Software is much easier to build that one that runs on the Apple iPhone and the Blackberry Q10<p>Because Android is a cross platform technology, designing an app for Android is more like doing on for the web.
评论 #5873870 未加载
stewie2almost 12 years ago
yes, it is. I started with Android (because I don&#x27;t need to pay for developer membership), but I hate it very much. Eclipse is very shitty IDE. So many bugs, so slow, so not user friendly.
Zigurdalmost 12 years ago
The first thing I tell designers and coders with iOS experience is to get over trying to make your layouts pixel-perfect. It&#x27;s such a simple thing. But so many projects end up wasting a lot of resources, or even end up locking screen orientation when they first ship because they didn&#x27;t take this seriously.<p>The other side of this coin is that a simple wireframe can get implemented on iOS quickly, while on Android, the coders may spend a lot of time on multiple layouts, multiple sets of graphical assets, different font sizes, different screen dimensions and densities, etc. It often helps if the designer participates in creating and testing layouts and assets for an Android version.<p>Secondly, a lot of coders who don&#x27;t also have some server-side Java experience find Eclipse jarringly unfriendly. Spend some time getting used to Eclipse and understand how the &quot;It&#x27;s plugins all the way down&quot; model makes Eclipse do some stupid things. Android Studio is much better, but it&#x27;s still an &quot;early access&quot; release.<p>Thirdly, Android&#x27;s runtime is a platform for apps and system middleware. Large parts of the Android system are written in Java using the same toolchain as apps. You can, for example, add an API to Android that other apps can use. You can communicate with lots of other apps. You can &quot;borrow&quot; parts of apps&#x27; UI and ask them to do particular tasks, like picking a file, for you, and you can let other apps do the same with your app. Android is more complex because it is more expressive.