Questions tagged [multi-device-hybrid-apps]

Multi-Device Hybrid Apps for Visual Studio leverages Apache Cordova™ to easily build cross platform apps that run on iOS, Android, Windows, and Windows Phone using a single project based on HTML5 and JavaScript.

Some important resources and links to help out:

  1. Read more about the project

  2. Download the tools

  3. Get started with our documentation

  4. Tutorials for Visual Studio Tools for Apache Cordova

  5. Read the FAQs

  6. Read the Known Issues

  7. Download Sample Apps - AngularJS, BackboneJS, WinJS

  8. Got suggestions? Write to the team at vscordovatools@microsoft.com

  9. Follow latest updates on @VSCordovaTools

191 questions
0
votes
1 answer

The edge module has not been pre-compiled for node.js version v6.3.0

When I try to build my app from vs2015 update3 for ios, I get this error during compile The edge module has not been pre-compiled for node.js version v6.3.0. You must build a custom version of edge.node. Please refer to…
Reza
  • 18,865
  • 13
  • 88
  • 163
0
votes
1 answer

Opening documents in hybrid apps

I have made a hybrid app using jquery mobile and now I want to open few docs such as pdf,pptx etc.which are already included in project on a button click. I have the liberty to open it inside as well as outside the app. Ouside the app will be…
0
votes
2 answers

How to zoom google map in high density android devices in hybrid mobile app using google map javascript API?

This is my first hybrid app. I am targeting android(ver. 4 +) and iOS(ver. 7+) platform. I am developing on windows platform. I am using phonegap build. I have developed a hybrid mobile application on apache cordova. I am implementing map feature…
0
votes
1 answer

How to create responsive images for hybrid mobile application

For hybrid mobile application that using: Foundation framework for supporting tablet and mobile "rem" for the font responsive What is the best way to create responsive for images, now we give the images size in pix, the question is if the image…
0
votes
0 answers

Visual Studio Cordova project takes decades to load on an android device or crashes

I'm running Parallels on my Mac and i'm trying to install an app on my android device. Visual Studio gets stuck at this part here and after around 8min the app starts. Does this happen because i have VS installed on a virtual machine? UPDATE: Visual…
0
votes
1 answer

How to update Platform in (MDHA) MultiDeviceHybridApp

I am trying to use Camera plugin in a Crodva app developing by (MultiDeviceHybridApp) and I get this error: Plugin doesn't support this project's cordova-android version. cordova-android: 4.1.1, failed version requirement: >=5.0.0-dev Skipping…
Reza
  • 18,865
  • 13
  • 88
  • 163
0
votes
0 answers

Making a post request using HttpClient in WinJs

I want to make a post request using HttpClient or XMLHTTP similar to this. POST http://www.indianrail.gov.in/cgi_bin/inet_trnnum_cgi.cgiHTTP/1.1 Host: www.indianrail.gov.in Connection: keep-alive Content-Length: 39 Cache-Control:…
0
votes
1 answer

Cross Platform technology Stack: Sharing code and database in Android and ASP.NET MVC

I am working on a project which will have some part developed as a Android APP and some part as a website. The website would be a content management system, and the android app will be one of the consumer of the data. Just to be aware, my background…
Jash
  • 942
  • 4
  • 17
  • 40
0
votes
2 answers

Cordova 5 VS 2015. Android App Can Not Create Folder

I Updated to VS 2015 and Cordova 5. Since then i cannot create any folders or files anymore when using android. There no errors thrown or anything what can help me solving this problem. I am trying this: function onDeviceReady() { …
0
votes
2 answers

PouchDB on Hybrid Cordova App Not working

Am new to Hybrid app development, Am using Cordova v5, Ionic and PouchDB for my app. It seems everything works fine on Ionic serve command, but any operation on PouchDB seems to be not working on actual devices running Android Lollipop. Am…
0
votes
1 answer

Migrating Cordova Multi-Device Hybrid App to Visual Studio 2015

Have been following the instructions to migrate VS2013 proejct to VS2015 as outlined in the…
rtn
  • 2,012
  • 4
  • 21
  • 39
0
votes
1 answer

Can I distinguish native from hybrid Apps?

the question is up in the heading. Can I distinguish a native App from a hybrid App when I download it from the Google Play Store? Can someone link to any App in the Google Play Store that is for sure Hybrid? I am new to this field, so sorry if it…
Tower Jimmy
  • 567
  • 1
  • 4
  • 15
0
votes
1 answer

Stopping scroll in iOS hybrid app

How do I stop scroll in background which has a overlay/pop up on it? I have disabled the scroll and its working fine on windows and android but the background scrolls in iOS.
0
votes
2 answers

how to add a hourly event to a cordova application?

I'm developing an Android app using apache cordova tools on visual studio. I need an event that triggers hourly and do something, Is using the setInterval the best option or not? thanks.
0
votes
2 answers

Simple JavaScript not working when changing color in the body

when watching this tutorial, I tried to repro the JavaScript used in the beginning. However when setting up the function function setRandomColor(e) { var bodyElement = document.querySelector("body"); …