Can I use phonegap to create the same application for iOS and Android?

I plan to make a tablet application using a handset. In my presentation, I want to save five buttons.

  • The first button is to load the html page in the phone saver application.

  • The second button is to download the flash application or app3p app / apk in the application.

  • Third button to download video

  • The fourth button to display the video (half page) and half page for the html page means that at the same time I want to show the html document and video on the same page using web browsing and video.

    / li>
  • Fifth button - load the xml or sqlite generated quiz (multiple choice question)

. Is it possible to download external applications using phonegap for iOS and Android? If possible, please tell me how to do this.

I want to make one application for iOS and Android.

+4
source share
3 answers

To use telephone correspondence between iOS and Android:

  • yes you can, but you have to encode the application to dynamically expand with screen size due to screen resizing on Android. This can be achieved using a css layout for fluid.

for the second button in your application:

  • Flash cannot be used on iphone, and you cannot open .app inside iphone application.
  • as for Android, you can definitely open the flash, but I'm not sure if you can run .apk
+4
source

Yes, this is one of the main advantages of building a phonegap. One zip file with your html / javascript / css code supports ios, android, blackberry, windows phone and much more. To create an ios app, you need to have an Apple Developer Program account. This is a great tool that I have used several times.

+1
source

Yes, this is the only goal of PhoneGap. You need to first follow the steps to create a PhoneGap project for iOS and Android. For this you can use the link: -

http://docs.phonegap.com/en/3.4.0/guide_cli_index.md.html#The%20Command-Line%20Interface 

Now you can merge your HTML / CSS / JS files into a common www folder that you can use for any mobile platform that supports PhoneGap.

0
source

Source: https://habr.com/ru/post/1388780/


All Articles