What are the options for mobile application development? [closed]

-4

I have an idea to develop a mobile app, to run on Android and IOS platforms.

I've never developed anything mobile, so I have no idea what the technology options are for developing.

I'd like some suggestions.

    
asked by anonymous 24.05.2017 / 21:08

1 answer

5

First ask yourself, what do I know! From here we go to some options

Native Developing apps natively, technically is a great practice, but with a time-consuming learning curve.

  • IOS - Using Swift or Objective-C
  • Android - Using Java
  • Hybrid (Webview) How to develop apps using HTML, CSS and Javascript. Low learning curve, in addition to being well developed, the app gets to be legal.

    Some Frameworks:

  • IONIC
  • FRAMEWORK7
  • FAMO.US
  • among others.

    Cross-Platform Basically following the same context as above, but instead of being a WebView, it generates native apps. Many use JavaScript for this purpose. Others generate intermediate code. Still others use an intermediate C code to compile to the platform native.

    Examples:

  • ReactNative
  • NativeScript
  • Weex
  • Xamarin
  • TotalCross
  • Code Name One
  • Gluon
  • Knowing all this, it's up to you to decide which fits best at the moment.

    Hugs

        
    24.05.2017 / 21:20