visual-studio-cordova

Speech recognition plugin not working in Cordova 6

你说的曾经没有我的故事 提交于 2019-12-12 03:06:48
问题 I am using Visual studio tools for Apache Cordova to develop Android app. I started new project and added speech recognition plugin using GIT url. https://github.com/macdonst/SpeechRecognitionPlugin It installed successfully and project build is also successful. When I run application, In below code, It shows one alert before Speech recognition plugin initialization and never reaches second alert after that in below code. function onDeviceReady() { // Handle the Cordova pause and resume

VS-MDA: Custom iOS-Framework in Plugin

假如想象 提交于 2019-12-12 02:55:26
问题 we want to create a MobFox-Plugin for our hybrid apps. It is already running well in CLI-Cordova Apps, but it does not work in our hybrid apps, because it seems that the directory structure of the framework (the symbolic links between headers and version directory) is destroyed by Windows, where the framework is inside the plugin in the mda project. If I start a build, the header directory of is not recognized as a symbolic link, but as an ordinary executable textfile on the Mac. This is how

Azure mobile service doesn't register push notifications tags on Android

倾然丶 夕夏残阳落幕 提交于 2019-12-12 02:25:28
问题 I'm trying to use the following code to send push notifications to specific users with tags (VS Cordova Project using Azure mobile service). var tags = [userid, platform]; // Get the handle returned during registration. var handle = data.registrationId; // Set the device-specific message template. if (platform == "android" || platform == "Android") { // Template registration. var template = '{ "data" : {"message":"$(message)"}}'; // Register for notifications. mobileServiceClient.push.gcm

Tools for Apache Cordova: JQueryMobile wraps input tags inside a head tag?

ε祈祈猫儿з 提交于 2019-12-12 01:55:09
问题 Visual Studio 2013 Ultimate update 4, Tools for Apache Cordova CTP 3.0, building for Windows Phone 8.1 I'm searching for help/workarounds/magic to deal with the following: Start with a blank ApacheCordova template app, it runs "fine". Add a button input -- everything is still "fine" But then include JQuery and JQuery.mobile and neither the <p> nor the <input> are rendered when running on the emulator or the device.?.?.?.??? <body> <p>Hello, your application is ready!</p> <input type='button'

Tools for Apache Cordova DEP6200 Windows Universal App Windows Phone Won't Connect

a 夏天 提交于 2019-12-12 01:54:31
问题 I receive the following error when trying to connect to a Nokia 925 running windows 10. Severity Code Description Project File Line Suppression State Error DEP6200 : Bootstrapping failed. Device cannot be found. 0x89731810: Deployment failed because no Windows Phone was detected. Make sure a phone is connected and powered on. I can't get the phone to connect. The phone syncs pictures and charges fine. I am running Windows 10 on my laptop. I have developer features enabled on my windows 10 and

Setup Blocked: Tools for Apache Cordova for visual studio 2013-CTP3.1

删除回忆录丶 提交于 2019-12-12 01:52:02
问题 I am trying to Install Cordova Tools for Visual Studio , but I think because I have the old version of this tool I get this Error Messages. I try to run the commands on the attached URL on Microsoft Site, no luck please , is any one encounter this problem before ? My computer has Windows 7 installed 回答1: Search for MultiDeviceHybridApps_VS.msi in your %ProgramData%\Package Cache folder. Uninstall by running command: msiexec /x <Full path of MultiDeviceHybridApps_VS.msi> in admin cmd window.

$.ajax calls don't go through on android devices

谁说我不能喝 提交于 2019-12-12 01:18:09
问题 Javascript code: var googledocsurl = "https://docs.google.com/viewer?url="; $.ajax({ url: window.localStorage.getItem('basePath') + 'pdf/GetPdfUrls', type: "GET", data: { id: window.localStorage.getItem('userid') }, dataType: "json", beforeSend: function () { $.mobile.loading('show'); }, success: function (returnValue) { for (var i = 0; i < returnValue.length; i++) { $('#pdfList').append("<li><a onclick=\"window.open('" + googledocsurl + window.localStorage.getItem('basePath') + returnValue[i

How to debug on device

﹥>﹥吖頭↗ 提交于 2019-12-11 20:07:42
问题 I have an Ionic app that I can run and debug using the Ripple emulator launched from Visual Studio 2015. I can also run it on my Android device if I "Start without debugging". Unfortunately, something that works on the emulator doesn't work on the device, so I need to debug on the device. This is where I start hitting problems. Visual Studio hangs at "Installing app on device..." - unless I uninstall the app that was installed when I ran without debugging. When I do that, the app runs but it

Use an unmanaged DLL in Apache Cordova project

爱⌒轻易说出口 提交于 2019-12-11 14:13:38
问题 Is it possible to use an unmanaged DLL (C++) in an Apache Cordova project? How? I tried to follow the instructions on this page but I didn't understand where do I reference the DLL and its methods. UPDATE It seems to be possible creating a Windows Runtime Component that references the unmanaged DLL and Cordova plugin pointing to the winmd file, however it seems that the method call is not working. I don't receive any error message and can't even debug as Visual Studio still does not have

Building to iOS from Cordova Tools using old version of iOS platform

半腔热情 提交于 2019-12-11 13:50:35
问题 When targeting iPhone 6 as my simulator the incorrect splash screen is loaded which is forcing the WebView to upscale. I can navigate into the cordova project on OSX in the remote-builds folder which allows me to discover that the iOS platform version cordova is using is 3.6.3, where the latest is 3.7 which has the fixes for iOS8 and splash screens for iPhone 6. I need to be able to tell the remote agent to use the new platform to build, not the old one. Is that even possible? Do I need to