by Albert Swantner and Jon Uy
-
This plugin provides a simple way to use the the Filepicker.io native SDK for iOS.
-
This plugin is built for Cordova >= v2.1.0 with ARC.
Using this plugin requires Cordova iOS.
-
Make sure your Xcode project has been updated for Cordova
-
Drag and drop the
src/ios
folder from the Finder to yourPlugins
folder in XCode, using "Create groups for any added folders", rename the folder toFilepicker
. -
Add the .js files to your
www
folder on disk, and add reference(s) to the .js files using<script>
tags in your html file(s)<script type="text/javascript" src="/js/plugins/Filepicker.js"></script>
-
In the project plist add a key: "Filepicker API Key" with a value equal to your key from filepicker.io.
-
Add new entry with key
Filepicker
and valueCDVFilepicker
toPlugins
inCordova.plist/Cordova.plist
-
Add new frameworks required for filepicker
-AssetsLibrary.framework -QuartzCore.framework -CoreFoundation.framework -MobileCoreServices.framework -CoreGraphics.framework -Foundation.framework -UIKit.framework
window.plugins.filepicker.pick(
{
dataTypes: ['image/*'],
sourceNames: ['FPSourceCamera', 'FPSourceCameraRoll', 'FPSourceDropbox', 'FPSourceInstagram']
},
uploadSuccess,
uploadError
);
For full list of sourceNames visit Filepicker See the example
Patches welcome! Send a pull request. Since this is not a part of Cordova Core (which requires a CLA), this should be easier.
Post issues on Github
The latest code (my fork) will always be here
The MIT License
Copyright (c) 2013 Albert Swantner, Jon Uy
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
Contributors :
- Albert Swantner, author.
- Jon Uy, author.