Should I use PhoneGap instead of ramping up on the Android SDK?

前端 未结 5 1250
陌清茗
陌清茗 2021-01-30 17:36

Although I am comfortable with Java, I have much more experience with web development. I am looking to get into programming simple Android games.

Should I just program e

5条回答
  •  感动是毒
    2021-01-30 18:10

    Pros for Phonegap:

    • deploys to all major mobile devices
    • sounds like it best fits your skillset
    • covers most available platform APIs with a uniform code base, no need to learn each one
    • PhoneGap Build (https://build.phonegap.com/) and Cordova (https://github.com/brianleroux/Cordova) are making it even easier to deploy to multiple platforms

    Pros for Android:

    • Better performance
    • No limitations on which APIs you can use (i.e., video)
    • Defined toolset and workflow
    • native UI components
    • Fragments API and native layouts make handling different screen sizes easier

    It really comes down to whether or not you want to be an Android-only developer or not. That first pro for phonegap is HUGE is you plan to develop for multiple platforms.

提交回复
热议问题