Reputation: 7025
I'm starting to get into turing an iPad app I made with phonegap and converting it to become an android app as well. But where as Xcode lets you specify iPad only, I'm not seeing this option any where in the new Android Studio IDE. Is this an option when working with Android? Any ideas or help is appreciated.
Upvotes: 0
Views: 92
Reputation: 942
XCode would not give you an option to convert your iOS app for Android. If you are going the native way, then you use XCode for the iOS app and Eclipse for the Android app. If you want to save time and effort, then framework like PhoneGap is created for this very purpose. Instead of using Objective C or Java, you create the app with HTML, JS and CSS and it would work on all major supported platforms of PhoneGap.
About the form factor/screen size, Eclipse does not filter on screen size, however the Play Store does and this is controlled by the supports-screens manifest attribute.
Upvotes: 2