I am creating app using jquery Mobile and Phonegap 1.6.0, and I want to upload files to server, is there any way to explore/browse the IOS directories to select file and upload that file using Phonegap API?
Thanks
Found this with a 10 second search of the docs: http://docs.phonegap.com/en/1.6.0/cordova_file_file.md.html#File Is this what you want?
Related
Scenario: Say end-user got a attachment in mail app in ios. And user wants to upload this file in my app.
In React native is there any good working component? I want to use it to create facility where my user can upload files( not images).
Any help would be appreciated.
As suggested by #jaineshdoshi, component hosted at www.npmjs.com/package/react-native-document-picker can be used as document picker..
ps: since ios 11 has file app, this solution might work differently on older ios version
I am creating a new html application using kendo ui. It is calling the web services to get the data and the ui is rendered using Kendo UI. I want this app to be published as ios app.
Is it possible to publish this app directly as a ipad / iphone app ?
Thanks,
Sachin
I thought this information can be useful to someone who is trying to achieve the same thing.
Phonegap Build is the online tool , that allows you to publish html apps as ios , android or windows applications.
All you need is js , css and html pages of your applications with a valid and well formatted config.xml file. You can upload the zip file with all these files and this portal will build the apps for all 3 platforms and will allow you to download the .ipa, .apk and .xap files.
Thanks.
I am working on Worklight Developer Edition Version 6.1. I have created a native component inside a Hybrid app. I am using WL.NativePage.show method for navigating from HTML to native pages. I am having 5 images in an array in a native page. I need to save those images in a DB and need to access the same in a HTML page.
Can anyone tell me, how to do this using DB? (should be common for both Native and Web app)
Can I use Worklight JSONStore in Developer Edition ?
Worklight 6.1 does not support JSONStore in native pages.
Possible solution:
What you can do instead is save the images locally using native code.
Then, in order to access these locally-saved images via the web portion of the app, you could write a custom Cordova plug-in to access it.
You will need to consult with the iOS SDK documentation regarding how to save the file locally.
Some resources:
Download an Image and Save it as PNG or JPEG in iPhone SDK
Adding native functionality using Cordova plug-ins
I built the app using phonegap with xcode 4.5 .Basically i chosen the template as PhoneGap based application.And create the simple app successfully installed the apps in deveices(iPad & Android mobile).I could see only default icon on all devices.How to specify that?Do i need to modify in phonegap.plist?
Each platform has its own way of handling the application icon, so you'll have to do some more work than just updating one file.
Did you see phonegap's wiki on that topic?
I'd like to integrate a FastPdfKit Reader into my PhoneGap application. That is, the PDF reader should be opened within the PhoneGap app, so that the application-related navigation is still visible.
Where do I best start?
Do you know about any publicly available code that gives an example on how to achieve this?
It sounds like what you are looking for is creating a PhoneGap plugin.
http://wiki.phonegap.com/w/page/36752779/PhoneGap%20Plugins
Here are some tutorials on making plugins for PhoneGap:
http://hiediutley.com/2011/04/15/phonegap-tutorial-series-6-writing-your-own-plugin/