I have been recently experimenting with NativeScript and I have come across NativeScript SideKick which is suppose to build iOS apps in Windows using a cloud feature.
NativeScript SideKick
But how can you run this build in an iOS emulator on Windows, has anyone tried this before?
According to #JenLooper in this video 9.25s, she states that it is/will by possible but building app via cloud
Yes and NO.
YES
Using the cloud build feature you can build for iOS and run this build on a connected iOS device AND/OR publish to the iOS App store.
NO
There is currently no emulator fo IOS that will run on windows.
Related
i'm new in mobile development
I wasn't never using MacOS before, and now i'm trying to build a crossplatform mobile app using React Native
The android mobile app is already built and run normally
But for now i'm trying to develop the app into ios mobile app use MacOS inside VMWare
And i have some question for it
Can i instantly copy my project which was built at windows OS(Android) to MacOS then run it?
Do i need to do extra things if i i can only copy my project from Windows OS to MacOS?
What is cd ios && pod install and what time should i run this script?
Why windows can't be used for developing ios app?
Can i connect my VMWare MacOS directly to my iPhone directly using WiFi?
Sorry i'm still a newbie and please apologize me if i have an unnecessary questions
I am trying to use the cordova-plugin-health plugin for a phonegap app I am working on. Whenever I use the app every plugin works but this one. I am using the phonegap mac app to test on an iPhone 6s.
Steps I have taken:
Installed plugin with cordova plugin add cordova-plugin-health --variable HEALTH_READ_PERMISSION='App needs read access' --variable HEALTH_WRITE_PERMISSION='App needs write access' also I did cordova platform add ios
Used navigator.health.requestAuthorization later on tried window.plugin.health.requestAuthorization my ide WebStorm was able to detect the second but not the first.
Is there anything I missed/can I use this plugin using the phonegap mac app?
Thanks!
Phonegap Developer App is a tool to easily preview your apps.
Phonegap Developer App is a Cordova app itself, that loads your app code from a local web server.
The thing about the Phonegap Developer App is, as it's a precompiled app, it can only run the plugins that were included on the Phonegap Developer App at the moment of the build.
That means, most 3rd party plugins (like the heathkit one) won't work as they are not included in the Phonegap Developer App.
What you can do is to run your app in your device instead of previewing it.
To do it, run, with the Phonegap CLI installed and your device plugged in:
phonegap run ios
If you have Cordova CLI installed, this should also work
cordova run ios.
Ionic can create UWP application which works on windows 8/10, but I want to create desktop app which works on windows 7 too. Electron can do that but that cannot work with android. I need to make a single app that works on Windows 7, Ubuntu and Android. On Visual Studio Community 2015
Have you heard of NW.js? The apps you create run inside a chromium browser environment. I tested a app on windows10/ubuntu in the past. I think it'll run on windows 7 as well.
However you have to compile separately for each platform.
Build instructions for windows is here.
Note: Nw.js cannot create Android or iOS apps. It can create desktop apps for Mac, Ubuntu and Windows.
Been trying to port the SQLite3-WinRT component from windows 8.1 to work on windows 10. I have managed to get it working on for x64 and x86 architect. however when trying to deploy my app to a windows 10 ARM device it was crashing and reporting that
"The specified module could not be found."
when I try to call SQLite3.openAsync
I tried the following resolutions and had no joy
Unable to load DLL 'sqlite3' in SQLite Net Platform WinRT
Exception when using SQLite in WinRT app
Windows 10 Universal Javascript app SQLite in Windows Mobile 10
also used this guide to try resolve the issue by installing SQLite for windows universal from the extensions
http://timheuer.com/blog/archive/2012/08/07/updated-how-to-using-sqlite-from-windows-store-apps.aspx
I am using Visual Studio 2015 update 3
using the latest version of the SQLite3-WinRT component
using cordova 6.3.0
the device i'm deploying to is a windows 10 mobile Nokia Lumia 550
anyone able to shed some light on possible resolution ?
Try using this component perhaps:
https://github.com/cloudcrypt/SQLite-Universal-WinJS-Component
It works as a SQLite Universal WinJS Component for Javascript Windows Store Apps running on the Windows 10 Universal App Platform.
There is so much conflicting information out there on this, I'm hoping we can shed some light.
Goal: Create and develop a phonegap app that will be built using phonegap build.
1) I don't want to install the android and iOS SDKs, that's why I want to use phonegap build.
2) I created an app using the cordova cli cordova create hello
3) There is no phonegap.js or cordova.js I guess because I didn't add a platform. But I don't want to add a platform as that requires installing the SDKs
4) I need to be able to debug and test this, so I downloaded ripple, which may or may not work, I need the phonegap.js file first to see.
So has anyone figured this out? Building and developing and app that will be used on Phonegap build?
Thanks!
Phonegap will let you create a UI using webview of Android, iOS, Blackberry or other platforms. That means you need to have native SDK to apply Phonegap Build. It doesn't mean that Phonegap will create an App for you and deploy it to other platforms.