├── .gitignore ├── Android ├── AccountList │ ├── AccountList.java │ ├── README │ └── accountlist.js ├── ActionBarSherlockTabBar │ └── REPO MOVED.txt ├── Analytics │ ├── 1.6 │ │ ├── APACHE2.0LICENSE │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.xml │ │ ├── docs │ │ │ └── Analytics.md │ │ ├── lib │ │ │ └── libGoogleAnalytics.jar │ │ ├── manifest │ │ ├── src │ │ │ └── com │ │ │ │ └── phonegap │ │ │ │ └── plugins │ │ │ │ └── analytics │ │ │ │ └── GoogleAnalyticsTracker.java │ │ └── www │ │ │ └── analytics.js │ └── 2.0 │ │ ├── APACHE2.0LICENSE │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config.xml │ │ ├── docs │ │ └── Analytics.md │ │ ├── lib │ │ └── libGoogleAnalytics.jar │ │ ├── manifest │ │ ├── src │ │ └── com │ │ │ └── phonegap │ │ │ └── plugins │ │ │ └── analytics │ │ │ └── GoogleAnalyticsTracker.java │ │ └── www │ │ └── analytics.js ├── AppBlade │ ├── AppBlade.js │ ├── AppBladePlugin.java │ └── README.md ├── AppPreferences │ └── README.md ├── AugmentedReality-Wikitude │ ├── Documentation │ │ └── Documentation.md │ ├── Plugin │ │ ├── README.md │ │ ├── WikitudePlugin.java │ │ ├── WikitudePlugin.js │ │ └── WikitudePluginExtended.java │ └── SampleProjects │ │ ├── Basic │ │ ├── HelloWorld │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ │ ├── world │ │ │ │ │ └── HelloWorld.html │ │ │ │ └── www │ │ │ │ │ ├── cordova-2.0.0.js │ │ │ │ │ ├── css │ │ │ │ │ └── index.css │ │ │ │ │ ├── img │ │ │ │ │ └── cordova.png │ │ │ │ │ ├── index.html │ │ │ │ │ ├── js │ │ │ │ │ ├── WikitudePlugin.js │ │ │ │ │ └── index.js │ │ │ │ │ ├── res │ │ │ │ │ ├── icon │ │ │ │ │ │ ├── cordova_128.png │ │ │ │ │ │ ├── cordova_16.png │ │ │ │ │ │ ├── cordova_24.png │ │ │ │ │ │ ├── cordova_256.png │ │ │ │ │ │ ├── cordova_32.png │ │ │ │ │ │ ├── cordova_48.png │ │ │ │ │ │ ├── cordova_512.png │ │ │ │ │ │ ├── cordova_64.png │ │ │ │ │ │ ├── cordova_android_36.png │ │ │ │ │ │ ├── cordova_android_48.png │ │ │ │ │ │ ├── cordova_android_72.png │ │ │ │ │ │ ├── cordova_android_96.png │ │ │ │ │ │ ├── cordova_bb_80.png │ │ │ │ │ │ ├── cordova_ios_114.png │ │ │ │ │ │ ├── cordova_ios_144.png │ │ │ │ │ │ ├── cordova_ios_57.png │ │ │ │ │ │ └── cordova_ios_72.png │ │ │ │ │ └── screen │ │ │ │ │ │ ├── android_hdpi_landscape.png │ │ │ │ │ │ ├── android_hdpi_portrait.png │ │ │ │ │ │ ├── android_ldpi_landscape.png │ │ │ │ │ │ ├── android_ldpi_portrait.png │ │ │ │ │ │ ├── android_mdpi_landscape.png │ │ │ │ │ │ ├── android_mdpi_portrait.png │ │ │ │ │ │ ├── android_xhdpi_landscape.png │ │ │ │ │ │ ├── android_xhdpi_portrait.png │ │ │ │ │ │ ├── blackberry_transparent_300.png │ │ │ │ │ │ ├── blackberry_transparent_400.png │ │ │ │ │ │ ├── ipad_landscape.png │ │ │ │ │ │ ├── ipad_portrait.png │ │ │ │ │ │ ├── ipad_retina_landscape.png │ │ │ │ │ │ ├── ipad_retina_portrait.png │ │ │ │ │ │ ├── iphone_landscape.png │ │ │ │ │ │ ├── iphone_portrait.png │ │ │ │ │ │ ├── iphone_retina_landscape.png │ │ │ │ │ │ ├── iphone_retina_portrait.png │ │ │ │ │ │ └── windows_phone_portrait.jpg │ │ │ │ │ ├── spec.html │ │ │ │ │ └── spec │ │ │ │ │ ├── helper.js │ │ │ │ │ └── index.js │ │ │ ├── cordova │ │ │ │ ├── BOOM │ │ │ │ ├── appinfo.jar │ │ │ │ ├── clean │ │ │ │ ├── cordova │ │ │ │ ├── debug │ │ │ │ ├── emulate │ │ │ │ └── log │ │ │ ├── libs │ │ │ │ └── cordova-2.0.0.jar │ │ │ ├── proguard-project.txt │ │ │ ├── project.properties │ │ │ ├── res │ │ │ │ ├── drawable-hdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ └── ic_launcher.png │ │ │ │ ├── layout │ │ │ │ │ └── main.xml │ │ │ │ ├── values │ │ │ │ │ └── strings.xml │ │ │ │ └── xml │ │ │ │ │ └── config.xml │ │ │ └── src │ │ │ │ └── com │ │ │ │ └── wikitude │ │ │ │ └── phonegap │ │ │ │ ├── PhonegapSampleActivity.java │ │ │ │ └── WikitudePlugin.java │ │ └── README.md │ │ └── Extended │ │ ├── HelloImageRecognition │ │ ├── .classpath │ │ ├── .project │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── world │ │ │ │ └── SimpleImageRecognition │ │ │ │ │ ├── DirectionArrow.png │ │ │ │ │ ├── SimpleIRWorld.html │ │ │ │ │ ├── WikitudeLogo.png │ │ │ │ │ ├── WikitudeLogo.zip │ │ │ │ │ └── overlay.png │ │ │ └── www │ │ │ │ ├── cordova-2.0.0.js │ │ │ │ ├── css │ │ │ │ └── index.css │ │ │ │ ├── img │ │ │ │ └── cordova.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── WikitudePlugin.js │ │ │ │ └── index.js │ │ │ │ ├── res │ │ │ │ ├── icon │ │ │ │ │ ├── cordova_128.png │ │ │ │ │ ├── cordova_16.png │ │ │ │ │ ├── cordova_24.png │ │ │ │ │ ├── cordova_256.png │ │ │ │ │ ├── cordova_32.png │ │ │ │ │ ├── cordova_48.png │ │ │ │ │ ├── cordova_512.png │ │ │ │ │ ├── cordova_64.png │ │ │ │ │ ├── cordova_android_36.png │ │ │ │ │ ├── cordova_android_48.png │ │ │ │ │ ├── cordova_android_72.png │ │ │ │ │ ├── cordova_android_96.png │ │ │ │ │ ├── cordova_bb_80.png │ │ │ │ │ ├── cordova_ios_114.png │ │ │ │ │ ├── cordova_ios_144.png │ │ │ │ │ ├── cordova_ios_57.png │ │ │ │ │ └── cordova_ios_72.png │ │ │ │ └── screen │ │ │ │ │ ├── android_hdpi_landscape.png │ │ │ │ │ ├── android_hdpi_portrait.png │ │ │ │ │ ├── android_ldpi_landscape.png │ │ │ │ │ ├── android_ldpi_portrait.png │ │ │ │ │ ├── android_mdpi_landscape.png │ │ │ │ │ ├── android_mdpi_portrait.png │ │ │ │ │ ├── android_xhdpi_landscape.png │ │ │ │ │ ├── android_xhdpi_portrait.png │ │ │ │ │ ├── blackberry_transparent_300.png │ │ │ │ │ ├── blackberry_transparent_400.png │ │ │ │ │ ├── ipad_landscape.png │ │ │ │ │ ├── ipad_portrait.png │ │ │ │ │ ├── ipad_retina_landscape.png │ │ │ │ │ ├── ipad_retina_portrait.png │ │ │ │ │ ├── iphone_landscape.png │ │ │ │ │ ├── iphone_portrait.png │ │ │ │ │ ├── iphone_retina_landscape.png │ │ │ │ │ ├── iphone_retina_portrait.png │ │ │ │ │ └── windows_phone_portrait.jpg │ │ │ │ ├── spec.html │ │ │ │ └── spec │ │ │ │ ├── helper.js │ │ │ │ └── index.js │ │ ├── cordova │ │ │ ├── BOOM │ │ │ ├── appinfo.jar │ │ │ ├── clean │ │ │ ├── cordova │ │ │ ├── debug │ │ │ ├── emulate │ │ │ └── log │ │ ├── libs │ │ │ └── cordova-2.0.0.jar │ │ ├── proguard-project.txt │ │ ├── project.properties │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-xhdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── main.xml │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ └── xml │ │ │ │ └── config.xml │ │ └── src │ │ │ └── com │ │ │ └── wikitude │ │ │ └── phonegap │ │ │ ├── PhonegapSampleActivity.java │ │ │ ├── WikitudePlugin.java │ │ │ └── WikitudePluginExtended.java │ │ └── README.md ├── BackgroundService │ ├── 1.8.1 │ │ ├── MyService.java │ │ ├── README.md │ │ ├── backgroundService.js │ │ ├── backgroundserviceplugin.jar │ │ ├── index.html │ │ └── myService.js │ ├── 2.0.0 │ │ ├── MyService.java │ │ ├── README.md │ │ ├── backgroundService-2.0.0.js │ │ ├── backgroundserviceplugin-2.0.0.jar │ │ ├── index-2.0.0.html │ │ └── myService-2.0.0.js │ └── README.md ├── BarcodeScanner │ ├── 1.8.1 │ │ ├── assets │ │ │ └── www │ │ │ │ └── barcodescanner.js │ │ └── src │ │ │ └── com │ │ │ └── phonegap │ │ │ └── plugins │ │ │ └── barcodescanner │ │ │ └── BarcodeScanner.java │ ├── 2.0.0 │ │ ├── assets │ │ │ └── www │ │ │ │ └── barcodescanner.js │ │ └── src │ │ │ └── com │ │ │ └── phonegap │ │ │ └── plugins │ │ │ └── barcodescanner │ │ │ └── BarcodeScanner.java │ ├── LibraryProject │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ ├── html │ │ │ │ ├── about1d.html │ │ │ │ ├── about2d.html │ │ │ │ ├── index.html │ │ │ │ ├── scanning.html │ │ │ │ ├── sharing.html │ │ │ │ ├── style.css │ │ │ │ └── whatsnew.html │ │ │ └── images │ │ │ │ ├── big-1d.png │ │ │ │ ├── big-datamatrix.png │ │ │ │ ├── big-qr.png │ │ │ │ ├── contact-results-screen.jpg │ │ │ │ ├── demo-no.png │ │ │ │ ├── demo-yes.png │ │ │ │ ├── scan-example.png │ │ │ │ ├── scan-from-phone.png │ │ │ │ └── search-book-contents.jpg │ │ ├── build.properties │ │ ├── build.xml │ │ ├── default.properties │ │ ├── gen │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── zxing │ │ │ │ └── client │ │ │ │ └── android │ │ │ │ └── R.java │ │ ├── proguard-dump.txt │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ ├── launcher_icon.png │ │ │ │ └── shopper_icon.png │ │ │ ├── drawable │ │ │ │ ├── launcher_icon.png │ │ │ │ ├── share_via_barcode.png │ │ │ │ └── shopper_icon.png │ │ │ ├── layout-land │ │ │ │ ├── encode.xml │ │ │ │ └── share.xml │ │ │ ├── layout-ldpi │ │ │ │ └── capture.xml │ │ │ ├── layout │ │ │ │ ├── bookmark_picker_list_item.xml │ │ │ │ ├── capture.xml │ │ │ │ ├── encode.xml │ │ │ │ ├── help.xml │ │ │ │ ├── network.xml │ │ │ │ ├── search_book_contents.xml │ │ │ │ ├── search_book_contents_header.xml │ │ │ │ ├── search_book_contents_list_item.xml │ │ │ │ └── share.xml │ │ │ ├── raw │ │ │ │ └── beep.ogg │ │ │ ├── values-ar │ │ │ │ └── strings.xml │ │ │ ├── values-bg │ │ │ │ └── strings.xml │ │ │ ├── values-cs │ │ │ │ └── strings.xml │ │ │ ├── values-da │ │ │ │ └── strings.xml │ │ │ ├── values-de │ │ │ │ └── strings.xml │ │ │ ├── values-es │ │ │ │ └── strings.xml │ │ │ ├── values-fi │ │ │ │ └── strings.xml │ │ │ ├── values-fr │ │ │ │ └── strings.xml │ │ │ ├── values-he │ │ │ │ └── strings.xml │ │ │ ├── values-hu │ │ │ │ └── strings.xml │ │ │ ├── values-it │ │ │ │ └── strings.xml │ │ │ ├── values-ja-rJP │ │ │ │ └── strings.xml │ │ │ ├── values-kr │ │ │ │ └── strings.xml │ │ │ ├── values-nl │ │ │ │ └── strings.xml │ │ │ ├── values-pl │ │ │ │ └── strings.xml │ │ │ ├── values-pt │ │ │ │ └── strings.xml │ │ │ ├── values-ru │ │ │ │ └── strings.xml │ │ │ ├── values-sk │ │ │ │ └── strings.xml │ │ │ ├── values-sl │ │ │ │ └── strings.xml │ │ │ ├── values-sv │ │ │ │ └── strings.xml │ │ │ ├── values-tr │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rCN │ │ │ │ └── strings.xml │ │ │ ├── values-zh-rTW │ │ │ │ └── strings.xml │ │ │ ├── values │ │ │ │ ├── attrs.xml │ │ │ │ ├── colors.xml │ │ │ │ ├── ids.xml │ │ │ │ └── strings.xml │ │ │ └── xml │ │ │ │ └── preferences.xml │ │ ├── src │ │ │ └── com │ │ │ │ └── google │ │ │ │ └── zxing │ │ │ │ ├── BarcodeFormat.java │ │ │ │ ├── Binarizer.java │ │ │ │ ├── BinaryBitmap.java │ │ │ │ ├── ChecksumException.java │ │ │ │ ├── DecodeHintType.java │ │ │ │ ├── EncodeHintType.java │ │ │ │ ├── FormatException.java │ │ │ │ ├── LuminanceSource.java │ │ │ │ ├── MultiFormatReader.java │ │ │ │ ├── MultiFormatWriter.java │ │ │ │ ├── NotFoundException.java │ │ │ │ ├── Reader.java │ │ │ │ ├── ReaderException.java │ │ │ │ ├── Result.java │ │ │ │ ├── ResultMetadataType.java │ │ │ │ ├── ResultPoint.java │ │ │ │ ├── ResultPointCallback.java │ │ │ │ ├── Writer.java │ │ │ │ ├── WriterException.java │ │ │ │ ├── aztec │ │ │ │ ├── AztecDetectorResult.java │ │ │ │ ├── AztecReader.java │ │ │ │ ├── decoder │ │ │ │ │ └── Decoder.java │ │ │ │ └── detector │ │ │ │ │ └── Detector.java │ │ │ │ ├── client │ │ │ │ ├── android │ │ │ │ │ ├── AndroidHttpClient.java │ │ │ │ │ ├── BeepManager.java │ │ │ │ │ ├── CaptureActivity.java │ │ │ │ │ ├── CaptureActivityHandler.java │ │ │ │ │ ├── Contents.java │ │ │ │ │ ├── DecodeFormatManager.java │ │ │ │ │ ├── DecodeHandler.java │ │ │ │ │ ├── DecodeThread.java │ │ │ │ │ ├── FinishListener.java │ │ │ │ │ ├── HelpActivity.java │ │ │ │ │ ├── InactivityTimer.java │ │ │ │ │ ├── Intents.java │ │ │ │ │ ├── LocaleManager.java │ │ │ │ │ ├── PlanarYUVLuminanceSource.java │ │ │ │ │ ├── PreferencesActivity.java │ │ │ │ │ ├── ViewfinderResultPointCallback.java │ │ │ │ │ ├── ViewfinderView.java │ │ │ │ │ ├── book │ │ │ │ │ │ ├── BrowseBookListener.java │ │ │ │ │ │ ├── SearchBookContentsActivity.java │ │ │ │ │ │ ├── SearchBookContentsAdapter.java │ │ │ │ │ │ ├── SearchBookContentsListItem.java │ │ │ │ │ │ └── SearchBookContentsResult.java │ │ │ │ │ ├── camera │ │ │ │ │ │ ├── AutoFocusCallback.java │ │ │ │ │ │ ├── CameraConfigurationManager.java │ │ │ │ │ │ ├── CameraManager.java │ │ │ │ │ │ ├── FlashlightManager.java │ │ │ │ │ │ └── PreviewCallback.java │ │ │ │ │ ├── encode │ │ │ │ │ │ ├── EncodeActivity.java │ │ │ │ │ │ └── QRCodeEncoder.java │ │ │ │ │ ├── history │ │ │ │ │ │ ├── DBHelper.java │ │ │ │ │ │ ├── HistoryClickListener.java │ │ │ │ │ │ └── HistoryManager.java │ │ │ │ │ ├── result │ │ │ │ │ │ ├── AddressBookResultHandler.java │ │ │ │ │ │ ├── CalendarResultHandler.java │ │ │ │ │ │ ├── EmailAddressResultHandler.java │ │ │ │ │ │ ├── GeoResultHandler.java │ │ │ │ │ │ ├── ISBNResultHandler.java │ │ │ │ │ │ ├── ProductResultHandler.java │ │ │ │ │ │ ├── ResultButtonListener.java │ │ │ │ │ │ ├── ResultHandler.java │ │ │ │ │ │ ├── ResultHandlerFactory.java │ │ │ │ │ │ ├── SMSResultHandler.java │ │ │ │ │ │ ├── TelResultHandler.java │ │ │ │ │ │ ├── TextResultHandler.java │ │ │ │ │ │ ├── URIResultHandler.java │ │ │ │ │ │ ├── WifiResultHandler.java │ │ │ │ │ │ └── supplement │ │ │ │ │ │ │ ├── KillerCallable.java │ │ │ │ │ │ │ ├── ProductResultInfoRetriever.java │ │ │ │ │ │ │ ├── SupplementalInfoRetriever.java │ │ │ │ │ │ │ └── URIResultInfoRetriever.java │ │ │ │ │ ├── share │ │ │ │ │ │ ├── AppPickerActivity.java │ │ │ │ │ │ ├── BookmarkAdapter.java │ │ │ │ │ │ ├── BookmarkPickerActivity.java │ │ │ │ │ │ ├── LoadPackagesAsyncTask.java │ │ │ │ │ │ └── ShareActivity.java │ │ │ │ │ └── wifi │ │ │ │ │ │ ├── Killer.java │ │ │ │ │ │ ├── NetworkSetting.java │ │ │ │ │ │ ├── NetworkUtil.java │ │ │ │ │ │ ├── WifiActivity.java │ │ │ │ │ │ └── WifiReceiver.java │ │ │ │ └── result │ │ │ │ │ ├── AbstractDoCoMoResultParser.java │ │ │ │ │ ├── AddressBookAUResultParser.java │ │ │ │ │ ├── AddressBookDoCoMoResultParser.java │ │ │ │ │ ├── AddressBookParsedResult.java │ │ │ │ │ ├── BizcardResultParser.java │ │ │ │ │ ├── BookmarkDoCoMoResultParser.java │ │ │ │ │ ├── CalendarParsedResult.java │ │ │ │ │ ├── EmailAddressParsedResult.java │ │ │ │ │ ├── EmailAddressResultParser.java │ │ │ │ │ ├── EmailDoCoMoResultParser.java │ │ │ │ │ ├── ExpandedProductParsedResult.java │ │ │ │ │ ├── ExpandedProductResultParser.java │ │ │ │ │ ├── GeoParsedResult.java │ │ │ │ │ ├── GeoResultParser.java │ │ │ │ │ ├── ISBNParsedResult.java │ │ │ │ │ ├── ISBNResultParser.java │ │ │ │ │ ├── ParsedResult.java │ │ │ │ │ ├── ParsedResultType.java │ │ │ │ │ ├── ProductParsedResult.java │ │ │ │ │ ├── ProductResultParser.java │ │ │ │ │ ├── ResultParser.java │ │ │ │ │ ├── SMSMMSResultParser.java │ │ │ │ │ ├── SMSParsedResult.java │ │ │ │ │ ├── SMSTOMMSTOResultParser.java │ │ │ │ │ ├── SMTPResultParser.java │ │ │ │ │ ├── TelParsedResult.java │ │ │ │ │ ├── TelResultParser.java │ │ │ │ │ ├── TextParsedResult.java │ │ │ │ │ ├── URIParsedResult.java │ │ │ │ │ ├── URIResultParser.java │ │ │ │ │ ├── URLTOResultParser.java │ │ │ │ │ ├── VCardResultParser.java │ │ │ │ │ ├── VEventResultParser.java │ │ │ │ │ ├── WifiParsedResult.java │ │ │ │ │ ├── WifiResultParser.java │ │ │ │ │ └── optional │ │ │ │ │ ├── AbstractNDEFResultParser.java │ │ │ │ │ ├── NDEFRecord.java │ │ │ │ │ ├── NDEFSmartPosterParsedResult.java │ │ │ │ │ ├── NDEFSmartPosterResultParser.java │ │ │ │ │ ├── NDEFTextResultParser.java │ │ │ │ │ └── NDEFURIResultParser.java │ │ │ │ ├── common │ │ │ │ ├── BitArray.java │ │ │ │ ├── BitMatrix.java │ │ │ │ ├── BitSource.java │ │ │ │ ├── CharacterSetECI.java │ │ │ │ ├── Collections.java │ │ │ │ ├── Comparator.java │ │ │ │ ├── DecoderResult.java │ │ │ │ ├── DefaultGridSampler.java │ │ │ │ ├── DetectorResult.java │ │ │ │ ├── ECI.java │ │ │ │ ├── GlobalHistogramBinarizer.java │ │ │ │ ├── GridSampler.java │ │ │ │ ├── HybridBinarizer.java │ │ │ │ ├── PerspectiveTransform.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── detector │ │ │ │ │ ├── MonochromeRectangleDetector.java │ │ │ │ │ └── WhiteRectangleDetector.java │ │ │ │ └── reedsolomon │ │ │ │ │ ├── GenericGF.java │ │ │ │ │ ├── GenericGFPoly.java │ │ │ │ │ ├── ReedSolomonDecoder.java │ │ │ │ │ ├── ReedSolomonEncoder.java │ │ │ │ │ └── ReedSolomonException.java │ │ │ │ ├── datamatrix │ │ │ │ ├── DataMatrixReader.java │ │ │ │ ├── decoder │ │ │ │ │ ├── BitMatrixParser.java │ │ │ │ │ ├── DataBlock.java │ │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ │ ├── Decoder.java │ │ │ │ │ └── Version.java │ │ │ │ └── detector │ │ │ │ │ └── Detector.java │ │ │ │ ├── multi │ │ │ │ ├── ByQuadrantReader.java │ │ │ │ ├── GenericMultipleBarcodeReader.java │ │ │ │ ├── MultipleBarcodeReader.java │ │ │ │ └── qrcode │ │ │ │ │ ├── QRCodeMultiReader.java │ │ │ │ │ └── detector │ │ │ │ │ ├── MultiDetector.java │ │ │ │ │ └── MultiFinderPatternFinder.java │ │ │ │ ├── oned │ │ │ │ ├── CodaBarReader.java │ │ │ │ ├── Code128Reader.java │ │ │ │ ├── Code128Writer.java │ │ │ │ ├── Code39Reader.java │ │ │ │ ├── Code39Writer.java │ │ │ │ ├── Code93Reader.java │ │ │ │ ├── EAN13Reader.java │ │ │ │ ├── EAN13Writer.java │ │ │ │ ├── EAN8Reader.java │ │ │ │ ├── EAN8Writer.java │ │ │ │ ├── EANManufacturerOrgSupport.java │ │ │ │ ├── ITFReader.java │ │ │ │ ├── ITFWriter.java │ │ │ │ ├── MultiFormatOneDReader.java │ │ │ │ ├── MultiFormatUPCEANReader.java │ │ │ │ ├── OneDReader.java │ │ │ │ ├── UPCAReader.java │ │ │ │ ├── UPCAWriter.java │ │ │ │ ├── UPCEANExtensionSupport.java │ │ │ │ ├── UPCEANReader.java │ │ │ │ ├── UPCEANWriter.java │ │ │ │ ├── UPCEReader.java │ │ │ │ └── rss │ │ │ │ │ ├── AbstractRSSReader.java │ │ │ │ │ ├── DataCharacter.java │ │ │ │ │ ├── FinderPattern.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── RSS14Reader.java │ │ │ │ │ ├── RSSUtils.java │ │ │ │ │ └── expanded │ │ │ │ │ ├── BitArrayBuilder.java │ │ │ │ │ ├── ExpandedPair.java │ │ │ │ │ ├── RSSExpandedReader.java │ │ │ │ │ └── decoders │ │ │ │ │ ├── AI013103decoder.java │ │ │ │ │ ├── AI01320xDecoder.java │ │ │ │ │ ├── AI01392xDecoder.java │ │ │ │ │ ├── AI01393xDecoder.java │ │ │ │ │ ├── AI013x0x1xDecoder.java │ │ │ │ │ ├── AI013x0xDecoder.java │ │ │ │ │ ├── AI01AndOtherAIs.java │ │ │ │ │ ├── AI01decoder.java │ │ │ │ │ ├── AI01weightDecoder.java │ │ │ │ │ ├── AbstractExpandedDecoder.java │ │ │ │ │ ├── AnyAIDecoder.java │ │ │ │ │ ├── BlockParsedResult.java │ │ │ │ │ ├── CurrentParsingState.java │ │ │ │ │ ├── DecodedChar.java │ │ │ │ │ ├── DecodedInformation.java │ │ │ │ │ ├── DecodedNumeric.java │ │ │ │ │ ├── DecodedObject.java │ │ │ │ │ ├── FieldParser.java │ │ │ │ │ └── GeneralAppIdDecoder.java │ │ │ │ ├── pdf417 │ │ │ │ ├── PDF417Reader.java │ │ │ │ ├── decoder │ │ │ │ │ ├── BitMatrixParser.java │ │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ │ └── Decoder.java │ │ │ │ └── detector │ │ │ │ │ └── Detector.java │ │ │ │ └── qrcode │ │ │ │ ├── QRCodeReader.java │ │ │ │ ├── QRCodeWriter.java │ │ │ │ ├── decoder │ │ │ │ ├── BitMatrixParser.java │ │ │ │ ├── DataBlock.java │ │ │ │ ├── DataMask.java │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ ├── Decoder.java │ │ │ │ ├── ErrorCorrectionLevel.java │ │ │ │ ├── FormatInformation.java │ │ │ │ ├── Mode.java │ │ │ │ └── Version.java │ │ │ │ ├── detector │ │ │ │ ├── AlignmentPattern.java │ │ │ │ ├── AlignmentPatternFinder.java │ │ │ │ ├── Detector.java │ │ │ │ ├── FinderPattern.java │ │ │ │ ├── FinderPatternFinder.java │ │ │ │ └── FinderPatternInfo.java │ │ │ │ └── encoder │ │ │ │ ├── BlockPair.java │ │ │ │ ├── ByteMatrix.java │ │ │ │ ├── Encoder.java │ │ │ │ ├── MaskUtil.java │ │ │ │ ├── MatrixUtil.java │ │ │ │ └── QRCode.java │ │ └── utils │ │ │ └── translate.py │ └── README.md ├── Biblesearch │ └── README.md ├── Bluetooth │ ├── LICENSE.txt │ ├── NOTICE.txt │ ├── README │ ├── assets │ │ └── www │ │ │ ├── bluetooth.js │ │ │ └── index.html │ └── src │ │ └── com │ │ └── phonegap │ │ └── plugin │ │ └── bluetooth │ │ ├── Bluetooth.java │ │ └── BluetoothPlugin.java ├── BluetoothPlugin │ ├── LICENSE │ ├── NOTICE │ ├── README.md │ ├── assets │ │ └── www │ │ │ ├── bluetooth.js │ │ │ ├── cordova-2.0.0.js │ │ │ ├── index.html │ │ │ └── jquery-1.6.4.js │ └── src │ │ └── org │ │ └── apache │ │ └── cordova │ │ └── plugin │ │ └── BluetoothPlugin.java ├── CallLog │ ├── CallListPlugin.java │ ├── README.md │ └── calllog.js ├── ChildBrowser │ ├── 1.8.1 │ │ ├── src │ │ │ └── com │ │ │ │ └── phonegap │ │ │ │ └── plugins │ │ │ │ └── childBrowser │ │ │ │ └── ChildBrowser.java │ │ └── www │ │ │ ├── childbrowser.js │ │ │ └── childbrowser │ │ │ ├── icon_arrow_left.png │ │ │ ├── icon_arrow_right.png │ │ │ └── icon_close.png │ ├── 2.0.0 │ │ ├── src │ │ │ └── com │ │ │ │ └── phonegap │ │ │ │ └── plugins │ │ │ │ └── childBrowser │ │ │ │ └── ChildBrowser.java │ │ └── www │ │ │ ├── childbrowser.js │ │ │ └── childbrowser │ │ │ ├── icon_arrow_left.png │ │ │ ├── icon_arrow_right.png │ │ │ └── icon_close.png │ └── README.md ├── ClipboardManager │ ├── ClipboardManagerPlugin.java │ ├── README.md │ └── clipboardmanager.js ├── ContactView │ ├── ContactView.java │ ├── ContactView.js │ └── README.txt ├── DatePicker │ ├── DatePickerPlugin.java │ ├── README.md │ └── datePickerPlugin.js ├── Diagnostic │ ├── README.md │ ├── src │ │ └── net │ │ │ └── avantic │ │ │ └── diagnosticPlugin │ │ │ └── Diagnostic.java │ └── www │ │ └── diagnostic.js ├── Downloader │ ├── Downloader.java │ ├── README.md │ └── downloader.js ├── EmailComposerWithAttachments │ ├── EmailComposer.java │ ├── EmailComposer.js │ └── readme.md ├── ExtractZipFile │ ├── README │ ├── src │ │ └── com │ │ │ └── phonegap │ │ │ └── plugin │ │ │ └── ExtractZipFile │ │ │ └── ExtractZipFilePlugin.java │ └── www │ │ ├── ZipPlugin.js │ │ ├── index.html │ │ └── phonegap-1.3.0.js ├── FacebookConnect │ └── README.md ├── FileUploader │ ├── FileUploader.java │ ├── README.md │ └── fileuploader.js ├── ForegroundCamera │ ├── CameraActivity.java │ ├── ForegroundCameraLauncher.java │ ├── ForegroundCameraPreview.java │ ├── LICENSE │ ├── NOTICE │ ├── README.txt │ ├── Sample │ │ └── ForegroundCameraPlugin │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ └── www │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ ├── camera.js │ │ │ │ └── cordova-2.1.0.js │ │ │ ├── libs │ │ │ └── cordova-2.1.0.jar │ │ │ ├── project.properties │ │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── foregroundcameraplugin.xml │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ └── xml │ │ │ │ └── config.xml │ │ │ └── src │ │ │ └── com │ │ │ └── foregroundcameraplugin │ │ │ ├── App.java │ │ │ ├── CameraActivity.java │ │ │ ├── ForegroundCameraLauncher.java │ │ │ └── ForegroundCameraPreview.java │ ├── camera.js │ ├── foregroundcameraplugin.xml │ ├── index.html │ └── strings.xml ├── ForegroundGallery │ ├── CameraActivity.java │ ├── ForegroundCameraLauncher.java │ ├── ForegroundCameraPreview.java │ ├── LICENSE │ ├── NOTICE │ ├── README.txt │ ├── Sample │ │ └── ForegroundCameraPlugin │ │ │ ├── .classpath │ │ │ ├── .project │ │ │ ├── AndroidManifest.xml │ │ │ ├── LICENSE │ │ │ ├── NOTICE │ │ │ ├── README.txt │ │ │ ├── assets │ │ │ └── www │ │ │ │ ├── index.html │ │ │ │ └── js │ │ │ │ ├── camera.js │ │ │ │ └── cordova-2.1.0.js │ │ │ ├── libs │ │ │ └── cordova-2.1.0.jar │ │ │ ├── project.properties │ │ │ ├── res │ │ │ ├── drawable-hdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-ldpi │ │ │ │ └── ic_launcher.png │ │ │ ├── drawable-mdpi │ │ │ │ └── ic_launcher.png │ │ │ ├── layout │ │ │ │ └── foregroundcameraplugin.xml │ │ │ ├── values │ │ │ │ └── strings.xml │ │ │ └── xml │ │ │ │ └── config.xml │ │ │ └── src │ │ │ └── com │ │ │ └── foregroundcameraplugin │ │ │ ├── App.java │ │ │ ├── CameraActivity.java │ │ │ ├── ForegroundCameraLauncher.java │ │ │ └── ForegroundCameraPreview.java │ ├── camera.js │ ├── foregroundcameraplugin.xml │ ├── index.html │ └── strings.xml ├── FtpClient │ └── README.md ├── Globalization │ ├── GlobalizationCommand.java │ ├── GlobalizationError.java │ ├── LICENSE │ ├── README.md │ ├── Resources.java │ ├── globalization.js │ └── globalization.tests.js ├── HeadsetWatcher │ ├── HeadsetWatcher.java │ ├── HeadsetWatcher.js │ └── README.md ├── Hmac │ ├── HmacPlugin.java │ ├── README.md │ └── hmac.js ├── HttpRequest │ └── readme.md ├── InAppBilling │ ├── com │ │ ├── android │ │ │ └── vending │ │ │ │ └── billing │ │ │ │ └── IMarketBillingService.aidl │ │ └── smartmobilesoftware │ │ │ └── inappbilling │ │ │ └── InAppBillingPlugin.java │ ├── inappbilling.js │ ├── net │ │ └── robotmedia │ │ │ └── billing │ │ │ ├── BillingController.java │ │ │ ├── BillingReceiver.java │ │ │ ├── BillingRequest.java │ │ │ ├── BillingService.java │ │ │ ├── IBillingObserver.java │ │ │ ├── helper │ │ │ ├── AbstractBillingActivity.java │ │ │ ├── AbstractBillingFragment.java │ │ │ └── AbstractBillingObserver.java │ │ │ ├── model │ │ │ ├── BillingDB.java │ │ │ ├── Transaction.java │ │ │ └── TransactionManager.java │ │ │ ├── security │ │ │ ├── DefaultSignatureValidator.java │ │ │ └── ISignatureValidator.java │ │ │ └── utils │ │ │ ├── AESObfuscator.java │ │ │ ├── Base64.java │ │ │ ├── Base64DecoderException.java │ │ │ ├── Compatibility.java │ │ │ ├── Installation.java │ │ │ └── Security.java │ └── readme.md ├── LocalNotification │ ├── AlarmHelper.java │ ├── AlarmOptions.java │ ├── AlarmReceiver.java │ ├── AlarmRestoreOnBoot.java │ ├── LocalNotification.java │ ├── LocalNotification.js │ ├── README.md │ └── example_index.html ├── LowLatencyAudio │ ├── README.txt │ ├── examples │ │ ├── basic │ │ │ ├── assets │ │ │ │ ├── cymbal.mp3 │ │ │ │ └── drum.mp3 │ │ │ └── index.html │ │ ├── drum machine │ │ │ ├── assets │ │ │ │ ├── README.txt │ │ │ │ ├── bass drum.mp3 │ │ │ │ ├── bongo.mp3 │ │ │ │ ├── carbonFiber.png │ │ │ │ ├── high hat closed.mp3 │ │ │ │ └── snare drum.mp3 │ │ │ └── index.html │ │ └── game simulator │ │ │ ├── assets │ │ │ ├── README.txt │ │ │ └── background.mp3 │ │ │ └── index.html │ └── src │ │ ├── PGLowLatencyAudio.js │ │ └── com │ │ └── phonegap │ │ ├── PGLowLatencyAudio.java │ │ ├── PGLowLatencyAudioAsset.java │ │ └── PGPolyphonicVoice.java ├── MacAddress │ ├── MacAddress.js │ ├── MacAddressPlugin.java │ └── README.md ├── NFC │ └── README.md ├── OcrApiService │ ├── com │ │ └── ocrapiservice │ │ │ ├── OcrApiServicePlugin.java │ │ │ └── OcrService.java │ ├── ocrapiservice.js │ ├── org │ │ └── apache │ │ │ └── http │ │ │ └── entity │ │ │ └── mime │ │ │ ├── FormBodyPart.java │ │ │ ├── Header.java │ │ │ ├── HttpMultipart.java │ │ │ ├── HttpMultipartMode.java │ │ │ ├── MIME.java │ │ │ ├── MinimalField.java │ │ │ ├── MultipartEntity.java │ │ │ ├── content │ │ │ ├── AbstractContentBody.java │ │ │ ├── ByteArrayBody.java │ │ │ ├── ContentBody.java │ │ │ ├── ContentDescriptor.java │ │ │ ├── FileBody.java │ │ │ ├── InputStreamBody.java │ │ │ ├── StringBody.java │ │ │ └── package.html │ │ │ └── package.html │ └── readme.md ├── PayPalPlugin │ ├── AndroidManifest.xml │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── www │ │ │ ├── btn_donate_LG.gif │ │ │ ├── btn_xpressCheckout.gif │ │ │ ├── demo.js │ │ │ ├── index.html │ │ │ ├── loadingAnimation.gif │ │ │ └── paypal.js │ ├── res │ │ └── xml │ │ │ └── config.xml │ └── src │ │ └── com │ │ └── phonegap │ │ └── plugin │ │ ├── PayPalPlugin.java │ │ ├── ResultDelegate.java │ │ └── mpl.java ├── PhoneListener │ └── README.md ├── PowerManagement │ ├── LICENSE │ ├── README.md │ ├── assets │ │ └── www │ │ │ ├── cordova-2.0.0.js │ │ │ ├── index.html │ │ │ └── powermanagement.js │ └── src │ │ └── org │ │ └── apache │ │ └── cordova │ │ └── plugin │ │ └── PowerManagement.java ├── README ├── RemoteSound │ ├── README.md │ ├── RemoteSound.js │ └── RemoteSoundPlugin.java ├── Resources │ ├── README.md │ ├── Resources.js │ └── ResourcesPlugin.java ├── SMS inbox_sent access │ ├── SMSReader.java │ ├── readme.txt │ └── smsread.js ├── SMSPlugin │ ├── AndroidManifest.xml │ ├── LICENSE.txt │ ├── README.md │ ├── assets │ │ └── www │ │ │ ├── jquery-1.6.min.js │ │ │ ├── jquery.mobile-1.0b3.min.css │ │ │ ├── jquery.mobile-1.0b3.min.js │ │ │ ├── pluginexample.html │ │ │ └── smsplugin.js │ └── src │ │ └── net │ │ └── practicaldeveloper │ │ ├── demo │ │ └── PluginExampleActivity.java │ │ └── phonegap │ │ └── plugins │ │ └── SmsPlugin.java ├── Screenshot │ ├── README.md │ ├── v1.8.1 │ │ ├── src │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── cordova │ │ │ │ └── Screenshot.java │ │ └── www │ │ │ └── Screenshot.js │ └── v2.0.0 │ │ ├── src │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ └── Screenshot.java │ │ └── www │ │ └── Screenshot.js ├── Share │ ├── README.md │ ├── Share.java │ └── share.js ├── ShopGap │ ├── README.md │ ├── ShopGapPlugin.java │ └── shopgap.js ├── SoftKeyboard │ ├── README.md │ ├── SoftKeyBoard.java │ └── softkeyboard.js ├── SpeechRecognizer │ ├── README.md │ ├── v1.8.1 │ │ ├── SpeechRecognizer.java │ │ └── SpeechRecognizer.js │ └── v2.0.0 │ │ ├── SpeechRecognizer.java │ │ └── SpeechRecognizer.js ├── StatusBarNotification │ ├── README.md │ ├── StatusBarNotification.java │ ├── StatusNotificationIntent.java │ ├── drawable-hdpi │ │ └── notification.png │ ├── drawable-mdpi │ │ └── notification.png │ ├── drawable-xhdpi │ │ └── notification.png │ └── statusbarnotification.js ├── TTS │ └── README.md ├── Torch │ ├── 1.9 │ │ ├── README.md │ │ ├── Torch.js │ │ └── TorchPlugin.java │ └── 2.1 │ │ ├── README.md │ │ ├── Torch.js │ │ ├── Torch.js~ │ │ └── TorchPlugin.java ├── Twitter │ ├── README │ ├── src │ │ └── com │ │ │ └── phonegap │ │ │ └── plugins │ │ │ └── twitter │ │ │ └── Twitter.java │ └── www │ │ └── twitter.js ├── VideoPlayer │ └── README.md ├── WACNapiPaymentPlugin │ ├── AndroidManifest.xml │ ├── LICENSE │ ├── README.md │ └── assets │ │ └── www │ │ ├── demo.js │ │ ├── images │ │ ├── PhoneGap.png │ │ ├── button-synchronize.png │ │ ├── loadingAnimation.gif │ │ ├── toggle-collapse-alt.png │ │ ├── toggle-expand-alt.png │ │ └── waclogo-sm.png │ │ ├── index.html │ │ └── wac.js ├── WaitingDialog │ ├── README.md │ ├── WaitingDialog.java │ └── WaitingDialog.js ├── WebIntent │ ├── README.md │ ├── WebIntent.java │ └── webintent.js ├── WikitudeCamera │ ├── README.md │ ├── WikitudeCamera.java │ ├── wikitudearintent.jar │ └── wikitudecamera.js ├── YouTube Player API │ └── README.md └── ZeroConf │ ├── README.md │ ├── ZeroConf.java │ └── ZeroConf.js ├── BlackBerry ├── BarcodeScanner │ ├── BarcodeScanner.java │ ├── EncodeAction.java │ ├── OS5 │ │ ├── AdvancedMultimediaManager.java │ │ ├── Encoder.java │ │ ├── Library │ │ │ ├── COPYING │ │ │ ├── README.md │ │ │ ├── build.xml │ │ │ └── src │ │ │ │ └── org │ │ │ │ └── apache │ │ │ │ └── cordova │ │ │ │ └── plugins │ │ │ │ └── barcodescanner │ │ │ │ └── google │ │ │ │ └── zxing │ │ │ │ ├── BarcodeFormat.java │ │ │ │ ├── Binarizer.java │ │ │ │ ├── BinaryBitmap.java │ │ │ │ ├── ChecksumException.java │ │ │ │ ├── DecodeHintType.java │ │ │ │ ├── EncodeHintType.java │ │ │ │ ├── FormatException.java │ │ │ │ ├── LuminanceSource.java │ │ │ │ ├── MultiFormatReader.java │ │ │ │ ├── MultiFormatWriter.java │ │ │ │ ├── NotFoundException.java │ │ │ │ ├── Reader.java │ │ │ │ ├── ReaderException.java │ │ │ │ ├── Result.java │ │ │ │ ├── ResultMetadataType.java │ │ │ │ ├── ResultPoint.java │ │ │ │ ├── ResultPointCallback.java │ │ │ │ ├── Writer.java │ │ │ │ ├── WriterException.java │ │ │ │ ├── aztec │ │ │ │ ├── AztecDetectorResult.java │ │ │ │ ├── AztecReader.java │ │ │ │ ├── decoder │ │ │ │ │ └── Decoder.java │ │ │ │ └── detector │ │ │ │ │ └── Detector.java │ │ │ │ ├── client │ │ │ │ └── result │ │ │ │ │ ├── AbstractDoCoMoResultParser.java │ │ │ │ │ ├── AddressBookAUResultParser.java │ │ │ │ │ ├── AddressBookDoCoMoResultParser.java │ │ │ │ │ ├── AddressBookParsedResult.java │ │ │ │ │ ├── BizcardResultParser.java │ │ │ │ │ ├── BookmarkDoCoMoResultParser.java │ │ │ │ │ ├── CalendarParsedResult.java │ │ │ │ │ ├── EmailAddressParsedResult.java │ │ │ │ │ ├── EmailAddressResultParser.java │ │ │ │ │ ├── EmailDoCoMoResultParser.java │ │ │ │ │ ├── ExpandedProductParsedResult.java │ │ │ │ │ ├── ExpandedProductResultParser.java │ │ │ │ │ ├── GeoParsedResult.java │ │ │ │ │ ├── GeoResultParser.java │ │ │ │ │ ├── ISBNParsedResult.java │ │ │ │ │ ├── ISBNResultParser.java │ │ │ │ │ ├── ParsedResult.java │ │ │ │ │ ├── ParsedResultType.java │ │ │ │ │ ├── ProductParsedResult.java │ │ │ │ │ ├── ProductResultParser.java │ │ │ │ │ ├── ResultParser.java │ │ │ │ │ ├── SMSMMSResultParser.java │ │ │ │ │ ├── SMSParsedResult.java │ │ │ │ │ ├── SMSTOMMSTOResultParser.java │ │ │ │ │ ├── SMTPResultParser.java │ │ │ │ │ ├── TelParsedResult.java │ │ │ │ │ ├── TelResultParser.java │ │ │ │ │ ├── TextParsedResult.java │ │ │ │ │ ├── URIParsedResult.java │ │ │ │ │ ├── URIResultParser.java │ │ │ │ │ ├── URLTOResultParser.java │ │ │ │ │ ├── VCardResultParser.java │ │ │ │ │ ├── VEventResultParser.java │ │ │ │ │ ├── WifiParsedResult.java │ │ │ │ │ ├── WifiResultParser.java │ │ │ │ │ └── optional │ │ │ │ │ ├── AbstractNDEFResultParser.java │ │ │ │ │ ├── NDEFRecord.java │ │ │ │ │ ├── NDEFSmartPosterParsedResult.java │ │ │ │ │ ├── NDEFSmartPosterResultParser.java │ │ │ │ │ ├── NDEFTextResultParser.java │ │ │ │ │ └── NDEFURIResultParser.java │ │ │ │ ├── common │ │ │ │ ├── BitArray.java │ │ │ │ ├── BitMatrix.java │ │ │ │ ├── BitSource.java │ │ │ │ ├── CharacterSetECI.java │ │ │ │ ├── Collections.java │ │ │ │ ├── Comparator.java │ │ │ │ ├── DecoderResult.java │ │ │ │ ├── DefaultGridSampler.java │ │ │ │ ├── DetectorResult.java │ │ │ │ ├── ECI.java │ │ │ │ ├── GlobalHistogramBinarizer.java │ │ │ │ ├── GridSampler.java │ │ │ │ ├── HybridBinarizer.java │ │ │ │ ├── PerspectiveTransform.java │ │ │ │ ├── StringUtils.java │ │ │ │ ├── detector │ │ │ │ │ ├── MonochromeRectangleDetector.java │ │ │ │ │ └── WhiteRectangleDetector.java │ │ │ │ └── reedsolomon │ │ │ │ │ ├── GenericGF.java │ │ │ │ │ ├── GenericGFPoly.java │ │ │ │ │ ├── ReedSolomonDecoder.java │ │ │ │ │ ├── ReedSolomonEncoder.java │ │ │ │ │ └── ReedSolomonException.java │ │ │ │ ├── datamatrix │ │ │ │ ├── DataMatrixReader.java │ │ │ │ ├── decoder │ │ │ │ │ ├── BitMatrixParser.java │ │ │ │ │ ├── DataBlock.java │ │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ │ ├── Decoder.java │ │ │ │ │ └── Version.java │ │ │ │ └── detector │ │ │ │ │ └── Detector.java │ │ │ │ ├── multi │ │ │ │ ├── ByQuadrantReader.java │ │ │ │ ├── GenericMultipleBarcodeReader.java │ │ │ │ ├── MultipleBarcodeReader.java │ │ │ │ └── qrcode │ │ │ │ │ ├── QRCodeMultiReader.java │ │ │ │ │ └── detector │ │ │ │ │ ├── MultiDetector.java │ │ │ │ │ └── MultiFinderPatternFinder.java │ │ │ │ ├── oned │ │ │ │ ├── CodaBarReader.java │ │ │ │ ├── Code128Reader.java │ │ │ │ ├── Code128Writer.java │ │ │ │ ├── Code39Reader.java │ │ │ │ ├── Code39Writer.java │ │ │ │ ├── Code93Reader.java │ │ │ │ ├── EAN13Reader.java │ │ │ │ ├── EAN13Writer.java │ │ │ │ ├── EAN8Reader.java │ │ │ │ ├── EAN8Writer.java │ │ │ │ ├── EANManufacturerOrgSupport.java │ │ │ │ ├── ITFReader.java │ │ │ │ ├── ITFWriter.java │ │ │ │ ├── MultiFormatOneDReader.java │ │ │ │ ├── MultiFormatUPCEANReader.java │ │ │ │ ├── OneDReader.java │ │ │ │ ├── UPCAReader.java │ │ │ │ ├── UPCAWriter.java │ │ │ │ ├── UPCEANExtensionSupport.java │ │ │ │ ├── UPCEANReader.java │ │ │ │ ├── UPCEANWriter.java │ │ │ │ ├── UPCEReader.java │ │ │ │ └── rss │ │ │ │ │ ├── AbstractRSSReader.java │ │ │ │ │ ├── DataCharacter.java │ │ │ │ │ ├── FinderPattern.java │ │ │ │ │ ├── Pair.java │ │ │ │ │ ├── RSS14Reader.java │ │ │ │ │ ├── RSSUtils.java │ │ │ │ │ └── expanded │ │ │ │ │ ├── BitArrayBuilder.java │ │ │ │ │ ├── ExpandedPair.java │ │ │ │ │ ├── RSSExpandedReader.java │ │ │ │ │ └── decoders │ │ │ │ │ ├── AI013103decoder.java │ │ │ │ │ ├── AI01320xDecoder.java │ │ │ │ │ ├── AI01392xDecoder.java │ │ │ │ │ ├── AI01393xDecoder.java │ │ │ │ │ ├── AI013x0x1xDecoder.java │ │ │ │ │ ├── AI013x0xDecoder.java │ │ │ │ │ ├── AI01AndOtherAIs.java │ │ │ │ │ ├── AI01decoder.java │ │ │ │ │ ├── AI01weightDecoder.java │ │ │ │ │ ├── AbstractExpandedDecoder.java │ │ │ │ │ ├── AnyAIDecoder.java │ │ │ │ │ ├── BlockParsedResult.java │ │ │ │ │ ├── CurrentParsingState.java │ │ │ │ │ ├── DecodedChar.java │ │ │ │ │ ├── DecodedInformation.java │ │ │ │ │ ├── DecodedNumeric.java │ │ │ │ │ ├── DecodedObject.java │ │ │ │ │ ├── FieldParser.java │ │ │ │ │ └── GeneralAppIdDecoder.java │ │ │ │ ├── pdf417 │ │ │ │ ├── PDF417Reader.java │ │ │ │ ├── decoder │ │ │ │ │ ├── BitMatrixParser.java │ │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ │ └── Decoder.java │ │ │ │ └── detector │ │ │ │ │ └── Detector.java │ │ │ │ └── qrcode │ │ │ │ ├── QRCodeReader.java │ │ │ │ ├── QRCodeWriter.java │ │ │ │ ├── decoder │ │ │ │ ├── BitMatrixParser.java │ │ │ │ ├── DataBlock.java │ │ │ │ ├── DataMask.java │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ ├── Decoder.java │ │ │ │ ├── ErrorCorrectionLevel.java │ │ │ │ ├── FormatInformation.java │ │ │ │ ├── Mode.java │ │ │ │ └── Version.java │ │ │ │ ├── detector │ │ │ │ ├── AlignmentPattern.java │ │ │ │ ├── AlignmentPatternFinder.java │ │ │ │ ├── Detector.java │ │ │ │ ├── FinderPattern.java │ │ │ │ ├── FinderPatternFinder.java │ │ │ │ └── FinderPatternInfo.java │ │ │ │ └── encoder │ │ │ │ ├── BlockPair.java │ │ │ │ ├── ByteMatrix.java │ │ │ │ ├── Encoder.java │ │ │ │ ├── MaskUtil.java │ │ │ │ ├── MatrixUtil.java │ │ │ │ └── QRCode.java │ │ ├── LuminanceSourceBitmap.java │ │ ├── Scanner.java │ │ └── zxingcore.jar │ ├── OS6 │ │ ├── Encoder.java │ │ └── Scanner.java │ ├── README.md │ ├── ScanAction.java │ └── barcodescanner.js ├── Biblesearch │ └── README.md ├── ChildBrowser │ ├── README.md │ ├── src │ │ └── org │ │ │ └── apache │ │ │ └── cordova │ │ │ └── plugins │ │ │ └── childbrowser │ │ │ ├── ChildBrowser.java │ │ │ ├── CustomBrowser.java │ │ │ ├── NavigationBar.java │ │ │ ├── URLEditField.java │ │ │ └── URLLabelField.java │ └── www │ │ ├── childbrowser.js │ │ └── childbrowser │ │ ├── icon_arrow_left.png │ │ ├── icon_arrow_right.png │ │ ├── icon_refresh.png │ │ └── icon_stop.png ├── Globalization │ ├── Globalization.java │ ├── GlobalizationError.java │ ├── LICENSE │ ├── README.md │ ├── Resources.java │ ├── Util.java │ ├── globalization.js │ ├── globalization.tests.js │ └── resourceBundles │ │ ├── ar.js.gz │ │ ├── ar_AE.js.gz │ │ ├── ar_BH.js.gz │ │ ├── ar_DZ.js.gz │ │ ├── ar_EG.js.gz │ │ ├── ar_IQ.js.gz │ │ ├── ar_JO.js.gz │ │ ├── ar_KW.js.gz │ │ ├── ar_LB.js.gz │ │ ├── ar_LY.js.gz │ │ ├── ar_MA.js.gz │ │ ├── ar_OM.js.gz │ │ ├── ar_QA.js.gz │ │ ├── ar_SA.js.gz │ │ ├── ar_SD.js.gz │ │ ├── ar_SY.js.gz │ │ ├── ar_TN.js.gz │ │ ├── ar_YE.js.gz │ │ ├── be.js.gz │ │ ├── be_BY.js.gz │ │ ├── bg.js.gz │ │ ├── bg_BG.js.gz │ │ ├── bn_IN.js.gz │ │ ├── ca.js.gz │ │ ├── ca_ES.js.gz │ │ ├── ca_ES_PREEURO.js.gz │ │ ├── cs.js.gz │ │ ├── cs_CZ.js.gz │ │ ├── cs_CZ_EURO.js.gz │ │ ├── cs_CZ_PREEURO.js.gz │ │ ├── da.js.gz │ │ ├── da_DK.js.gz │ │ ├── da_DK_EURO.js.gz │ │ ├── de.js.gz │ │ ├── de_AT.js.gz │ │ ├── de_AT_PREEURO.js.gz │ │ ├── de_CH.js.gz │ │ ├── de_DE.js.gz │ │ ├── de_DE_PREEURO.js.gz │ │ ├── de_LU.js.gz │ │ ├── de_LU_PREEURO.js.gz │ │ ├── el.js.gz │ │ ├── el_CY.js.gz │ │ ├── el_CY_EURO.js.gz │ │ ├── el_CY_PREEURO.js.gz │ │ ├── el_GR.js.gz │ │ ├── el_GR_PREEURO.js.gz │ │ ├── en.js.gz │ │ ├── en_AU.js.gz │ │ ├── en_BE.js.gz │ │ ├── en_BE_PREEURO.js.gz │ │ ├── en_CA.js.gz │ │ ├── en_GB.js.gz │ │ ├── en_GB_EURO.js.gz │ │ ├── en_HK.js.gz │ │ ├── en_IE.js.gz │ │ ├── en_IE_PREEURO.js.gz │ │ ├── en_IN.js.gz │ │ ├── en_MT.js.gz │ │ ├── en_NZ.js.gz │ │ ├── en_PH.js.gz │ │ ├── en_SG.js.gz │ │ ├── en_US.js.gz │ │ ├── en_ZA.js.gz │ │ ├── es.js.gz │ │ ├── es_AR.js.gz │ │ ├── es_BO.js.gz │ │ ├── es_CL.js.gz │ │ ├── es_CO.js.gz │ │ ├── es_CR.js.gz │ │ ├── es_DO.js.gz │ │ ├── es_EC.js.gz │ │ ├── es_ES.js.gz │ │ ├── es_ES_PREEURO.js.gz │ │ ├── es_GT.js.gz │ │ ├── es_HN.js.gz │ │ ├── es_MX.js.gz │ │ ├── es_NI.js.gz │ │ ├── es_PA.js.gz │ │ ├── es_PE.js.gz │ │ ├── es_PR.js.gz │ │ ├── es_PY.js.gz │ │ ├── es_SV.js.gz │ │ ├── es_US.js.gz │ │ ├── es_UY.js.gz │ │ ├── es_VE.js.gz │ │ ├── et.js.gz │ │ ├── et_EE.js.gz │ │ ├── et_EE_EURO.js.gz │ │ ├── et_EE_PREEURO.js.gz │ │ ├── fi.js.gz │ │ ├── fi_FI.js.gz │ │ ├── fi_FI_PREEURO.js.gz │ │ ├── fr.js.gz │ │ ├── fr_BE.js.gz │ │ ├── fr_BE_PREEURO.js.gz │ │ ├── fr_CA.js.gz │ │ ├── fr_CH.js.gz │ │ ├── fr_FR.js.gz │ │ ├── fr_FR_PREEURO.js.gz │ │ ├── fr_LU.js.gz │ │ ├── fr_LU_PREEURO.js.gz │ │ ├── ga.js.gz │ │ ├── ga_IE.js.gz │ │ ├── gu.js.gz │ │ ├── gu_IN.js.gz │ │ ├── hi_IN.js.gz │ │ ├── hr.js.gz │ │ ├── hr_HR.js.gz │ │ ├── hu.js.gz │ │ ├── hu_HU.js.gz │ │ ├── hu_HU_EURO.js.gz │ │ ├── hu_HU_PREEURO.js.gz │ │ ├── in.js.gz │ │ ├── in_ID.js.gz │ │ ├── is.js.gz │ │ ├── is_IS.js.gz │ │ ├── it.js.gz │ │ ├── it_CH.js.gz │ │ ├── it_IT.js.gz │ │ ├── it_IT_PREEURO.js.gz │ │ ├── iw.js.gz │ │ ├── iw_IL.js.gz │ │ ├── ja.js.gz │ │ ├── ja_JP.js.gz │ │ ├── ja_JP_JP.js.gz │ │ ├── kk.js.gz │ │ ├── kk_KZ.js.gz │ │ ├── kn.js.gz │ │ ├── kn_IN.js.gz │ │ ├── ko.js.gz │ │ ├── ko_KR.js.gz │ │ ├── lt.js.gz │ │ ├── lt_LT.js.gz │ │ ├── lt_LT_EURO.js.gz │ │ ├── lt_LT_PREEURO.js.gz │ │ ├── lv.js.gz │ │ ├── lv_LV.js.gz │ │ ├── lv_LV_EURO.js.gz │ │ ├── lv_LV_PREEURO.js.gz │ │ ├── mk.js.gz │ │ ├── mk_MK.js.gz │ │ ├── ml_IN.js.gz │ │ ├── mr.js.gz │ │ ├── mr_IN.js.gz │ │ ├── ms.js.gz │ │ ├── ms_MY.js.gz │ │ ├── mt.js.gz │ │ ├── mt_MT.js.gz │ │ ├── mt_MT_EURO.js.gz │ │ ├── mt_MT_PREEURO.js.gz │ │ ├── nb_NO.js.gz │ │ ├── nl.js.gz │ │ ├── nl_BE.js.gz │ │ ├── nl_BE_PREEURO.js.gz │ │ ├── nl_NL.js.gz │ │ ├── nl_NL_PREEURO.js.gz │ │ ├── no.js.gz │ │ ├── no_NO.js.gz │ │ ├── no_NO_NY.js.gz │ │ ├── or_IN.js.gz │ │ ├── pa.js.gz │ │ ├── pa_IN.js.gz │ │ ├── pl.js.gz │ │ ├── pl_PL.js.gz │ │ ├── pl_PL_EURO.js.gz │ │ ├── pl_PL_PREEURO.js.gz │ │ ├── pt.js.gz │ │ ├── pt_BR.js.gz │ │ ├── pt_PT.js.gz │ │ ├── pt_PT_PREEURO.js.gz │ │ ├── ro.js.gz │ │ ├── ro_RO.js.gz │ │ ├── ru.js.gz │ │ ├── ru_RU.js.gz │ │ ├── sh.js.gz │ │ ├── sh_CS.js.gz │ │ ├── sk.js.gz │ │ ├── sk_SK.js.gz │ │ ├── sk_SK_EURO.js.gz │ │ ├── sk_SK_PREEURO.js.gz │ │ ├── sl.js.gz │ │ ├── sl_SI.js.gz │ │ ├── sl_SI_PREEURO.js.gz │ │ ├── sq.js.gz │ │ ├── sq_AL.js.gz │ │ ├── sr.js.gz │ │ ├── sr_BA.js.gz │ │ ├── sr_CS.js.gz │ │ ├── sr_ME.js.gz │ │ ├── sr_RS.js.gz │ │ ├── sr_RS_Cyrl.js.gz │ │ ├── sr_RS_Latn.js.gz │ │ ├── sv.js.gz │ │ ├── sv_SE.js.gz │ │ ├── sv_SE_EURO.js.gz │ │ ├── sv_SE_PREEURO.js.gz │ │ ├── ta.js.gz │ │ ├── ta_IN.js.gz │ │ ├── te.js.gz │ │ ├── te_IN.js.gz │ │ ├── th.js.gz │ │ ├── th_TH.js.gz │ │ ├── th_TH_TH.js.gz │ │ ├── tr.js.gz │ │ ├── tr_TR.js.gz │ │ ├── uk.js.gz │ │ ├── uk_UA.js.gz │ │ ├── vi.js.gz │ │ ├── vi_VN.js.gz │ │ ├── zh.js.gz │ │ ├── zh_CN.js.gz │ │ ├── zh_HK.js.gz │ │ ├── zh_SG.js.gz │ │ └── zh_TW.js.gz ├── NFC │ └── README.md └── README ├── Palm ├── README └── SoundPlug │ ├── README.md │ ├── SoundPlug.cpp │ ├── build_plugin.sh │ ├── package.properties │ └── soundplug_plugin_appinfo.json ├── Qt └── PowerManagement │ ├── plugins │ ├── powermanagement.cpp │ └── powermanagement.h │ └── www │ └── js │ └── powermanagement.js ├── README.md ├── WindowsPhone ├── BarcodeScanner │ ├── deploy │ │ ├── BarcodeScanner.cs │ │ ├── BarcodeScanner.dll │ │ ├── README.md │ │ ├── ZXingVer1_7.dll │ │ └── barcodescanner.js │ └── sources │ │ ├── BarcodeScanner │ │ ├── BarcodeScanner.csproj │ │ ├── BarcodeScanner.csproj.user │ │ ├── PhotoCameraLuminanceSource.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Scanner.xaml │ │ ├── Scanner.xaml.cs │ │ └── ScannerResult.cs │ │ ├── README.md │ │ └── ZXing7_1Port │ │ ├── AssemblyInfo.cs │ │ ├── BarcodeFormat.cs │ │ ├── Binarizer.cs │ │ ├── BinaryBitmap.cs │ │ ├── DecodeHintType.cs │ │ ├── EncodeHintType.cs │ │ ├── LuminanceSource.cs │ │ ├── MultiFormatReader.cs │ │ ├── MultiFormatWriter.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── RGBLuminanceSource.cs │ │ ├── Reader.cs │ │ ├── ReaderException.cs │ │ ├── Result.cs │ │ ├── ResultMetadataType.cs │ │ ├── ResultPoint.cs │ │ ├── ResultPointCallback.cs │ │ ├── SupportClass.cs │ │ ├── Writer.cs │ │ ├── WriterException.cs │ │ ├── ZXingVer1_7.csproj │ │ ├── client │ │ └── result │ │ │ ├── AbstractDoCoMoResultParser.cs │ │ │ ├── AddressBookAUResultParser.cs │ │ │ ├── AddressBookDoCoMoResultParser.cs │ │ │ ├── AddressBookParsedResult.cs │ │ │ ├── BizcardResultParser.cs │ │ │ ├── BookmarkDoCoMoResultParser.cs │ │ │ ├── CalendarParsedResult.cs │ │ │ ├── EmailAddressParsedResult.cs │ │ │ ├── EmailAddressResultParser.cs │ │ │ ├── EmailDoCoMoResultParser.cs │ │ │ ├── GeoParsedResult.cs │ │ │ ├── GeoResultParser.cs │ │ │ ├── ISBNParsedResult.cs │ │ │ ├── ISBNResultParser.cs │ │ │ ├── ParsedResult.cs │ │ │ ├── ParsedResultType.cs │ │ │ ├── ProductParsedResult.cs │ │ │ ├── ProductResultParser.cs │ │ │ ├── ResultParser.cs │ │ │ ├── SMSMMSResultParser.cs │ │ │ ├── SMSParsedResult.cs │ │ │ ├── TelParsedResult.cs │ │ │ ├── TelResultParser.cs │ │ │ ├── TextParsedResult.cs │ │ │ ├── URIParsedResult.cs │ │ │ ├── URIResultParser.cs │ │ │ ├── URLTOResultParser.cs │ │ │ ├── VCardResultParser.cs │ │ │ ├── VEventResultParser.cs │ │ │ └── optional │ │ │ ├── AbstractNDEFResultParser.cs │ │ │ ├── NDEFRecord.cs │ │ │ ├── NDEFSmartPosterParsedResult.cs │ │ │ ├── NDEFSmartPosterResultParser.cs │ │ │ ├── NDEFTextResultParser.cs │ │ │ └── NDEFURIResultParser.cs │ │ ├── common │ │ ├── BitArray.cs │ │ ├── BitMatrix.cs │ │ ├── BitSource.cs │ │ ├── ByteArray.cs │ │ ├── ByteMatrix.cs │ │ ├── CharacterSetECI.cs │ │ ├── Collections.cs │ │ ├── Comparator.cs │ │ ├── DecoderResult.cs │ │ ├── DefaultGridSampler.cs │ │ ├── DetectorResult.cs │ │ ├── ECI.cs │ │ ├── GlobalHistogramBinarizer.cs │ │ ├── GridSampler.cs │ │ ├── HybridBinarizer.cs │ │ ├── PerspectiveTransform.cs │ │ ├── detector │ │ │ └── MonochromeRectangleDetector.cs │ │ └── reedsolomon │ │ │ ├── GF256.cs │ │ │ ├── GF256Poly.cs │ │ │ ├── ReedSolomonDecoder.cs │ │ │ ├── ReedSolomonEncoder.cs │ │ │ └── ReedSolomonException.cs │ │ ├── datamatrix │ │ ├── DataMatrixReader.cs │ │ ├── decoder │ │ │ ├── BitMatrixParser.cs │ │ │ ├── DataBlock.cs │ │ │ ├── DecodedBitStreamParser.cs │ │ │ ├── Decoder.cs │ │ │ └── Version.cs │ │ └── detector │ │ │ └── Detector.cs │ │ ├── multi │ │ ├── ByQuadrantReader.cs │ │ ├── GenericMultipleBarcodeReader.cs │ │ ├── MultipleBarcodeReader.cs │ │ └── qrcode │ │ │ ├── QRCodeMultiReader.cs │ │ │ └── detector │ │ │ ├── MultiDetector.cs │ │ │ └── MultiFinderPatternFinder.cs │ │ ├── oned │ │ ├── Code128Reader.cs │ │ ├── Code39Reader.cs │ │ ├── Code39Writer.cs │ │ ├── EAN13Reader.cs │ │ ├── EAN13Writer.cs │ │ ├── EAN8Reader.cs │ │ ├── EAN8Writer.cs │ │ ├── ITFReader.cs │ │ ├── MultiFormatOneDReader.cs │ │ ├── MultiFormatUPCEANReader.cs │ │ ├── OneDReader.cs │ │ ├── UPCAReader.cs │ │ ├── UPCEANReader.cs │ │ ├── UPCEANWriter.cs │ │ └── UPCEReader.cs │ │ ├── pdf417 │ │ ├── PDF417Reader.cs │ │ ├── decoder │ │ │ ├── BitMatrixParser.cs │ │ │ ├── DecodedBitStreamParser.cs │ │ │ └── Decoder.cs │ │ └── detector │ │ │ └── Detector.cs │ │ └── qrcode │ │ ├── QRCodeReader.cs │ │ ├── QRCodeWriter.cs │ │ ├── decoder │ │ ├── BitMatrixParser.cs │ │ ├── DataBlock.cs │ │ ├── DataMask.cs │ │ ├── DecodedBitStreamParser.cs │ │ ├── Decoder.cs │ │ ├── ErrorCorrectionLevel.cs │ │ ├── FormatInformation.cs │ │ ├── Mode.cs │ │ └── Version.cs │ │ ├── detector │ │ ├── AlignmentPattern.cs │ │ ├── AlignmentPatternFinder.cs │ │ ├── Detector.cs │ │ ├── FinderPattern.cs │ │ ├── FinderPatternFinder.cs │ │ └── FinderPatternInfo.cs │ │ └── encoder │ │ ├── BitVector.cs │ │ ├── BlockPair.cs │ │ ├── Encoder.cs │ │ ├── MaskUtil.cs │ │ ├── MatrixUtil.cs │ │ └── QRCode.cs ├── Biblesearch │ └── README.md ├── ChildBrowser │ ├── ChildBrowser.js │ └── ChildBrowserCommand.cs ├── Facebook │ ├── FBConnect.js │ └── facebook.html ├── LiveTiles │ ├── LiveTiles.cs │ ├── README.md │ ├── liveTiles.js │ └── liveTilesExample.html ├── PGMapLauncher │ ├── PGMapLauncher.cs │ ├── PGMapLauncher.js │ └── README.md └── PGSocialShare │ ├── PGSocialShare.cs │ ├── PGSocialShare.js │ └── readme.md ├── iOS ├── ActionSheet │ └── README.md ├── AdPlugin │ ├── .gitignore │ └── README.md ├── AppBlade │ ├── AppBlade.js │ ├── AppBladePlugin.h │ ├── AppBladePlugin.m │ └── README.md ├── AppiraterPlugin │ ├── AppiraterPlugin.h │ ├── AppiraterPlugin.js │ ├── AppiraterPlugin.m │ ├── Classes │ │ ├── Appirater.h │ │ └── Appirater.m │ └── README.md ├── ApplicationPreferences │ ├── README.md │ ├── applicationPreferences.h │ ├── applicationPreferences.js │ └── applicationPreferences.m ├── AudioEncode │ └── README.md ├── AudioRecord │ ├── AudioRecord.h │ ├── AudioRecord.js │ ├── AudioRecord.m │ └── README.md ├── AugmentedReality-Wikitude │ ├── Documentation │ │ └── Documentation.md │ ├── Plugin │ │ ├── README.md │ │ ├── WTWikitudePlugin.h │ │ ├── WTWikitudePlugin.m │ │ └── WikitudePlugin.js │ └── SampleProjects │ │ ├── Basic │ │ ├── HelloWorld │ │ │ ├── HelloWorld.xcodeproj │ │ │ │ ├── TemplateIcon.icns │ │ │ │ ├── TemplateInfo.plist │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── Andi.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ └── Andi.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ ├── HelloWorld.xcscheme │ │ │ │ │ └── xcschememanagement.plist │ │ │ ├── HelloWorld │ │ │ │ ├── .gitignore │ │ │ │ ├── Classes │ │ │ │ │ ├── AppDelegate.h │ │ │ │ │ ├── AppDelegate.m │ │ │ │ │ ├── MainViewController.h │ │ │ │ │ ├── MainViewController.m │ │ │ │ │ └── MainViewController.xib │ │ │ │ ├── Cordova.plist │ │ │ │ ├── CordovaBuildSettings.xcconfig │ │ │ │ ├── HelloWorld-Info.plist │ │ │ │ ├── HelloWorld-Prefix.pch │ │ │ │ ├── Plugins │ │ │ │ │ ├── README │ │ │ │ │ └── Wikitude │ │ │ │ │ │ ├── WTWikitudePlugin.h │ │ │ │ │ │ └── WTWikitudePlugin.m │ │ │ │ ├── Resources │ │ │ │ │ ├── Capture.bundle │ │ │ │ │ │ ├── controls_bg.png │ │ │ │ │ │ ├── controls_bg@2x.png │ │ │ │ │ │ ├── controls_bg@2x~ipad.png │ │ │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ │ │ ├── microphone.png │ │ │ │ │ │ ├── microphone@2x.png │ │ │ │ │ │ ├── microphone@2x~ipad.png │ │ │ │ │ │ ├── microphone~ipad.png │ │ │ │ │ │ ├── record_button.png │ │ │ │ │ │ ├── record_button@2x.png │ │ │ │ │ │ ├── record_button@2x~ipad.png │ │ │ │ │ │ ├── record_button~ipad.png │ │ │ │ │ │ ├── recording_bg.png │ │ │ │ │ │ ├── recording_bg@2x.png │ │ │ │ │ │ ├── recording_bg@2x~ipad.png │ │ │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ │ │ ├── stop_button.png │ │ │ │ │ │ ├── stop_button@2x.png │ │ │ │ │ │ ├── stop_button@2x~ipad.png │ │ │ │ │ │ └── stop_button~ipad.png │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── es.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ ├── icons │ │ │ │ │ │ ├── icon-72.png │ │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ │ ├── icon.png │ │ │ │ │ │ └── icon@2x.png │ │ │ │ │ ├── se.lproj │ │ │ │ │ │ └── Localizable.strings │ │ │ │ │ └── splash │ │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ │ │ └── Default~iphone.png │ │ │ │ └── main.m │ │ │ ├── assets │ │ │ │ └── world │ │ │ │ │ └── HelloWorld.html │ │ │ ├── cordova │ │ │ │ ├── debug │ │ │ │ ├── emulate │ │ │ │ └── log │ │ │ └── www │ │ │ │ ├── config.xml │ │ │ │ ├── cordova-2.0.0.js │ │ │ │ ├── css │ │ │ │ └── index.css │ │ │ │ ├── img │ │ │ │ └── cordova.png │ │ │ │ ├── index.html │ │ │ │ ├── js │ │ │ │ ├── WikitudePlugin.js │ │ │ │ └── index.js │ │ │ │ ├── res │ │ │ │ ├── icon │ │ │ │ │ ├── cordova_128.png │ │ │ │ │ ├── cordova_16.png │ │ │ │ │ ├── cordova_24.png │ │ │ │ │ ├── cordova_256.png │ │ │ │ │ ├── cordova_32.png │ │ │ │ │ ├── cordova_48.png │ │ │ │ │ ├── cordova_512.png │ │ │ │ │ ├── cordova_64.png │ │ │ │ │ ├── cordova_android_36.png │ │ │ │ │ ├── cordova_android_48.png │ │ │ │ │ ├── cordova_android_72.png │ │ │ │ │ ├── cordova_android_96.png │ │ │ │ │ ├── cordova_bb_80.png │ │ │ │ │ ├── cordova_ios_114.png │ │ │ │ │ ├── cordova_ios_144.png │ │ │ │ │ ├── cordova_ios_57.png │ │ │ │ │ └── cordova_ios_72.png │ │ │ │ └── screen │ │ │ │ │ ├── android_hdpi_landscape.png │ │ │ │ │ ├── android_hdpi_portrait.png │ │ │ │ │ ├── android_ldpi_landscape.png │ │ │ │ │ ├── android_ldpi_portrait.png │ │ │ │ │ ├── android_mdpi_landscape.png │ │ │ │ │ ├── android_mdpi_portrait.png │ │ │ │ │ ├── android_xhdpi_landscape.png │ │ │ │ │ ├── android_xhdpi_portrait.png │ │ │ │ │ ├── blackberry_transparent_300.png │ │ │ │ │ ├── blackberry_transparent_400.png │ │ │ │ │ ├── ipad_landscape.png │ │ │ │ │ ├── ipad_portrait.png │ │ │ │ │ ├── ipad_retina_landscape.png │ │ │ │ │ ├── ipad_retina_portrait.png │ │ │ │ │ ├── iphone_landscape.png │ │ │ │ │ ├── iphone_portrait.png │ │ │ │ │ ├── iphone_retina_landscape.png │ │ │ │ │ ├── iphone_retina_portrait.png │ │ │ │ │ └── windows_phone_portrait.jpg │ │ │ │ ├── spec.html │ │ │ │ └── spec │ │ │ │ ├── helper.js │ │ │ │ └── index.js │ │ └── README.md │ │ └── Extended │ │ ├── HelloImageRecognition │ │ ├── HelloImageRecognition.xcodeproj │ │ │ ├── TemplateIcon.icns │ │ │ ├── TemplateInfo.plist │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── Andi.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── Andi.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── HelloImageRecognition.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── HelloImageRecognition │ │ │ ├── .gitignore │ │ │ ├── Classes │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── MainViewController.h │ │ │ │ ├── MainViewController.m │ │ │ │ └── MainViewController.xib │ │ │ ├── Cordova.plist │ │ │ ├── CordovaBuildSettings.xcconfig │ │ │ ├── HelloImageRecognition-Info.plist │ │ │ ├── HelloImageRecognition-Prefix.pch │ │ │ ├── Plugins │ │ │ │ ├── README │ │ │ │ └── Wikitude │ │ │ │ │ ├── WTWikitudePlugin.h │ │ │ │ │ └── WTWikitudePlugin.m │ │ │ ├── Resources │ │ │ │ ├── Capture.bundle │ │ │ │ │ ├── controls_bg.png │ │ │ │ │ ├── controls_bg@2x.png │ │ │ │ │ ├── controls_bg@2x~ipad.png │ │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ │ ├── microphone.png │ │ │ │ │ ├── microphone@2x.png │ │ │ │ │ ├── microphone@2x~ipad.png │ │ │ │ │ ├── microphone~ipad.png │ │ │ │ │ ├── record_button.png │ │ │ │ │ ├── record_button@2x.png │ │ │ │ │ ├── record_button@2x~ipad.png │ │ │ │ │ ├── record_button~ipad.png │ │ │ │ │ ├── recording_bg.png │ │ │ │ │ ├── recording_bg@2x.png │ │ │ │ │ ├── recording_bg@2x~ipad.png │ │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ │ ├── stop_button.png │ │ │ │ │ ├── stop_button@2x.png │ │ │ │ │ ├── stop_button@2x~ipad.png │ │ │ │ │ └── stop_button~ipad.png │ │ │ │ ├── de.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── es.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── icons │ │ │ │ │ ├── icon-72.png │ │ │ │ │ ├── icon-72@2x.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon@2x.png │ │ │ │ ├── se.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ └── splash │ │ │ │ │ ├── Default-Landscape@2x~ipad.png │ │ │ │ │ ├── Default-Landscape~ipad.png │ │ │ │ │ ├── Default-Portrait@2x~ipad.png │ │ │ │ │ ├── Default-Portrait~ipad.png │ │ │ │ │ ├── Default@2x~iphone.png │ │ │ │ │ └── Default~iphone.png │ │ │ └── main.m │ │ ├── assets │ │ │ └── world │ │ │ │ └── SimpleImageRecognition │ │ │ │ ├── DirectionArrow.png │ │ │ │ ├── SimpleIRWorld.html │ │ │ │ ├── WikitudeLogo.png │ │ │ │ ├── WikitudeLogo.zip │ │ │ │ └── overlay.png │ │ ├── cordova │ │ │ ├── debug │ │ │ ├── emulate │ │ │ └── log │ │ └── www │ │ │ ├── config.xml │ │ │ ├── cordova-2.0.0.js │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── img │ │ │ └── cordova.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ ├── WikitudePlugin.js │ │ │ └── index.js │ │ │ ├── res │ │ │ ├── icon │ │ │ │ ├── cordova_128.png │ │ │ │ ├── cordova_16.png │ │ │ │ ├── cordova_24.png │ │ │ │ ├── cordova_256.png │ │ │ │ ├── cordova_32.png │ │ │ │ ├── cordova_48.png │ │ │ │ ├── cordova_512.png │ │ │ │ ├── cordova_64.png │ │ │ │ ├── cordova_android_36.png │ │ │ │ ├── cordova_android_48.png │ │ │ │ ├── cordova_android_72.png │ │ │ │ ├── cordova_android_96.png │ │ │ │ ├── cordova_bb_80.png │ │ │ │ ├── cordova_ios_114.png │ │ │ │ ├── cordova_ios_144.png │ │ │ │ ├── cordova_ios_57.png │ │ │ │ └── cordova_ios_72.png │ │ │ └── screen │ │ │ │ ├── android_hdpi_landscape.png │ │ │ │ ├── android_hdpi_portrait.png │ │ │ │ ├── android_ldpi_landscape.png │ │ │ │ ├── android_ldpi_portrait.png │ │ │ │ ├── android_mdpi_landscape.png │ │ │ │ ├── android_mdpi_portrait.png │ │ │ │ ├── android_xhdpi_landscape.png │ │ │ │ ├── android_xhdpi_portrait.png │ │ │ │ ├── blackberry_transparent_300.png │ │ │ │ ├── blackberry_transparent_400.png │ │ │ │ ├── ipad_landscape.png │ │ │ │ ├── ipad_portrait.png │ │ │ │ ├── ipad_retina_landscape.png │ │ │ │ ├── ipad_retina_portrait.png │ │ │ │ ├── iphone_landscape.png │ │ │ │ ├── iphone_portrait.png │ │ │ │ ├── iphone_retina_landscape.png │ │ │ │ ├── iphone_retina_portrait.png │ │ │ │ └── windows_phone_portrait.jpg │ │ │ ├── spec.html │ │ │ └── spec │ │ │ ├── helper.js │ │ │ └── index.js │ │ └── README.md ├── Badge │ ├── Badge.h │ ├── Badge.js │ ├── Badge.m │ └── README ├── BarcodeScanner │ ├── CDVBarcodeScanner.mm │ ├── Example │ │ └── BarCodeScannerCDV.zip │ ├── README.md │ ├── barcodescanner.js │ ├── build │ │ ├── .gitignore │ │ ├── Makefile │ │ └── onefile-zxing.py │ ├── scannerOverlay.xib │ ├── test │ │ ├── Makefile │ │ ├── README.md │ │ ├── desktop-app │ │ │ ├── .gitignore │ │ │ ├── desktop-app.js │ │ │ ├── images │ │ │ │ ├── code_128-1.jpg │ │ │ │ ├── code_128-1.txt │ │ │ │ ├── code_39-1.gif │ │ │ │ ├── code_39-1.txt │ │ │ │ ├── data_matrix-1.jpg │ │ │ │ ├── data_matrix-1.txt │ │ │ │ ├── ean_13-1.jpg │ │ │ │ ├── ean_13-1.txt │ │ │ │ ├── ean_8-1.gif │ │ │ │ ├── ean_8-1.txt │ │ │ │ ├── qr_code-large.gif │ │ │ │ ├── qr_code-large.txt │ │ │ │ ├── qr_code-medium.jpg │ │ │ │ ├── qr_code-medium.txt │ │ │ │ ├── qr_code-small.png │ │ │ │ ├── qr_code-small.txt │ │ │ │ ├── upc_a-1.jpg │ │ │ │ ├── upc_a-1.txt │ │ │ │ ├── upc_a-2.jpg │ │ │ │ ├── upc_a-2.txt │ │ │ │ ├── upc_e-1.gif │ │ │ │ ├── upc_e-1.txt │ │ │ │ ├── upc_e-2.jpg │ │ │ │ └── upc_e-2.txt │ │ │ └── index.html │ │ ├── phonegap-app │ │ │ ├── .gitignore │ │ │ ├── images │ │ │ │ └── .gitignore │ │ │ ├── index.html │ │ │ └── phonegap-app.js │ │ └── rebuild-tests-json.py │ ├── zxing-all-in-one.cpp │ └── zxing-all-in-one.h ├── Biblesearch │ └── README.md ├── CalendarPlugin │ ├── README │ ├── calendar.js │ ├── calendarPlugin.h │ └── calendarPlugin.m ├── Canvas2ImagePlugin │ └── README.md ├── ChildBrowser │ ├── ChildBrowser.bundle │ │ ├── arrow_left.png │ │ ├── arrow_left@2x.png │ │ ├── arrow_right.png │ │ ├── arrow_right@2x.png │ │ ├── but_refresh.png │ │ ├── but_refresh@2x.png │ │ ├── compass.png │ │ └── compass@2x.png │ ├── ChildBrowser.js │ ├── ChildBrowserCommand.h │ ├── ChildBrowserCommand.m │ ├── ChildBrowserViewController.h │ ├── ChildBrowserViewController.m │ ├── ChildBrowserViewController.xib │ ├── Cordova.plist.png │ ├── FBConnectExample │ │ ├── FBConnect.js │ │ ├── README.txt │ │ ├── facebook.html │ │ └── index.html │ ├── README.md │ └── index.html ├── DatePicker │ ├── DatePicker.h │ ├── DatePicker.js │ └── DatePicker.m ├── DeviceDetails │ ├── DeviceDetails.h │ ├── DeviceDetails.js │ ├── DeviceDetails.m │ └── README.md ├── Diagnostic │ ├── Diagnostic.h │ ├── Diagnostic.m │ ├── README.md │ ├── diagnostic.js │ └── example │ │ └── www │ │ ├── index.html │ │ ├── init.js │ │ └── status.html ├── EmailComposer │ ├── EmailComposer.h │ ├── EmailComposer.js │ ├── EmailComposer.m │ ├── index.html │ └── readme.md ├── EmailComposerWithAttachments │ ├── EmailComposer.h │ ├── EmailComposer.js │ ├── EmailComposer.m │ └── readme.md ├── ExternalFileUtil │ ├── README │ ├── plugin │ │ ├── js │ │ │ └── ExternalFileUtil.js │ │ └── obj-c │ │ │ ├── CDVExternalFileUtil.h │ │ │ └── CDVExternalFileUtil.m │ └── sample │ │ ├── pdf │ │ ├── README │ │ ├── drm.pdf │ │ └── no_drm.pdf │ │ └── www │ │ ├── cordova-2.0.0.js │ │ ├── css │ │ └── index.css │ │ ├── img │ │ └── cordova.png │ │ ├── index.html │ │ └── js │ │ ├── ExternalFileUtil.js │ │ └── index.js ├── ExternalScreen │ ├── README │ ├── plugin │ │ ├── ExternalScreen.js │ │ ├── PGExternalScreen.h │ │ └── PGExternalScreen.m │ └── samples │ │ ├── basic usage │ │ └── www │ │ │ ├── index.html │ │ │ └── secondary.html │ │ ├── fbi rss │ │ └── www │ │ │ ├── assets │ │ │ ├── activityIndicator.css │ │ │ └── styles.css │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── application.js │ │ │ ├── iscroll.js │ │ │ ├── jquery-1.7.1.min.js │ │ │ └── noClickDelay.js │ │ └── fleet manager │ │ └── www │ │ ├── assets │ │ ├── activityIndicator.css │ │ ├── airplane.png │ │ └── styles.css │ │ ├── index.html │ │ ├── js │ │ ├── application.js │ │ ├── iscroll.js │ │ ├── jquery-1.7.1.min.js │ │ ├── leaflet │ │ │ ├── images │ │ │ │ ├── layers.png │ │ │ │ ├── marker-icon.png │ │ │ │ ├── marker-shadow.png │ │ │ │ ├── zoom-in.png │ │ │ │ └── zoom-out.png │ │ │ ├── leaflet-src.js │ │ │ ├── leaflet.css │ │ │ ├── leaflet.ie.css │ │ │ └── leaflet.js │ │ └── noClickDelay.js │ │ └── map.html ├── ExtractZipFile │ ├── ExtractZipFilePlugin.h │ ├── ExtractZipFilePlugin.m │ ├── README.md │ ├── SSZipArchive │ │ ├── Changelog.markdown │ │ ├── LICENSE │ │ ├── Readme.markdown │ │ ├── SSZipArchive.h │ │ ├── SSZipArchive.m │ │ ├── Tests │ │ │ ├── IncorrectHeaders.zip │ │ │ ├── SSZipArchive.xcodeproj │ │ │ │ └── project.pbxproj │ │ │ ├── SSZipArchiveTests-Info.plist │ │ │ ├── SSZipArchiveTests.m │ │ │ ├── TestArchive.zip │ │ │ └── TestPasswordArchive.zip │ │ └── minizip │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ └── ZipPlugin.js ├── FacebookConnect │ └── README.md ├── FileUploader │ ├── FileUploader.h │ ├── FileUploader.m │ ├── README.md │ └── fileuploader.js ├── Geofencing │ ├── DGGeofencing.js │ ├── Geofencing │ │ ├── DGGeofencing.h │ │ ├── DGGeofencing.m │ │ ├── DGGeofencingHelper.h │ │ └── DGGeofencingHelper.m │ └── README.md ├── Globalization │ ├── Globalization.h │ ├── Globalization.js │ ├── Globalization.m │ ├── README.md │ ├── globalization.html │ └── globalization.tests.js ├── GoogleAnalytics │ ├── GoogSDK │ │ ├── GANTracker.h │ │ └── libGoogleAnalytics.a │ ├── GoogleAnalyticsPlugin.h │ ├── GoogleAnalyticsPlugin.js │ ├── GoogleAnalyticsPlugin.m │ └── README.md ├── InAppPurchaseManager │ ├── InAppPurchaseManager.h │ ├── InAppPurchaseManager.js │ ├── InAppPurchaseManager.m │ ├── README.md │ ├── SKProduct+LocalizedPrice.h │ └── SKProduct+LocalizedPrice.m ├── KeyboardToolbarRemover │ └── README.md ├── Keychain │ └── README.md ├── LocalNotifications │ ├── example │ │ ├── css │ │ │ └── style.css │ │ ├── images │ │ │ └── header.png │ │ ├── index.html │ │ └── js │ │ │ ├── core │ │ │ ├── jQuery.js │ │ │ └── phonegap-1.2.0.js │ │ │ ├── init.js │ │ │ └── plugins │ │ │ └── LocalNotification.js │ ├── plugin │ │ ├── LocalNotification.h │ │ ├── LocalNotification.js │ │ └── LocalNotification.m │ ├── project │ │ ├── Cordova LocalNotifications.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── drew.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── drew.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── Cordova LocalNotifications.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ └── Cordova LocalNotifications │ │ │ ├── Classes │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.m │ │ │ ├── MainViewController.h │ │ │ ├── MainViewController.m │ │ │ └── MainViewController.xib │ │ │ ├── Cordova LocalNotifications-Info.plist │ │ │ ├── Cordova LocalNotifications-Prefix.pch │ │ │ ├── Cordova.plist │ │ │ ├── LocalNotification.h │ │ │ ├── LocalNotification.m │ │ │ ├── Plugins │ │ │ └── README │ │ │ ├── Resources │ │ │ ├── Capture.bundle │ │ │ │ ├── controls_bg.png │ │ │ │ ├── controls_bg@2x.png │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ ├── microphone.png │ │ │ │ ├── microphone@2x.png │ │ │ │ ├── microphone~ipad.png │ │ │ │ ├── record_button.png │ │ │ │ ├── record_button@2x.png │ │ │ │ ├── record_button~ipad.png │ │ │ │ ├── recording_bg.png │ │ │ │ ├── recording_bg@2x.png │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ ├── stop_button.png │ │ │ │ ├── stop_button@2x.png │ │ │ │ └── stop_button~ipad.png │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── icons │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ ├── se.lproj │ │ │ │ └── Localizable.strings │ │ │ └── splash │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ │ ├── horn.caf │ │ │ ├── main.m │ │ │ ├── verify.sh │ │ │ └── www │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── images │ │ │ └── header.png │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── core │ │ │ ├── cordova-1.6.0.js │ │ │ ├── jQuery.js │ │ │ └── phonegap-1.2.0.js │ │ │ ├── init.js │ │ │ └── plugins │ │ │ └── LocalNotification.js │ └── readme.md ├── LowLatencyAudio │ ├── README.txt │ ├── examples │ │ ├── basic │ │ │ ├── assets │ │ │ │ ├── cymbal.mp3 │ │ │ │ └── drum.mp3 │ │ │ └── index.html │ │ ├── drum machine │ │ │ ├── assets │ │ │ │ ├── README.txt │ │ │ │ ├── bass drum.mp3 │ │ │ │ ├── bongo.mp3 │ │ │ │ ├── carbonFiber.png │ │ │ │ ├── high hat closed.mp3 │ │ │ │ └── snare drum.mp3 │ │ │ └── index.html │ │ └── game simulator │ │ │ ├── assets │ │ │ ├── README.txt │ │ │ └── background.mp3 │ │ │ └── index.html │ └── src │ │ ├── LowLatencyAudio.h │ │ ├── LowLatencyAudio.js │ │ ├── LowLatencyAudio.m │ │ ├── LowLatencyAudioAsset.h │ │ └── LowLatencyAudioAsset.m ├── MapKit │ ├── AsyncImageView.h │ ├── AsyncImageView.m │ ├── CDVAnnotation.h │ ├── CDVAnnotation.m │ ├── MapKit.h │ ├── MapKit.js │ ├── MapKit.m │ ├── README.md │ ├── icon.png │ └── map-close-button.png ├── MessageBox │ └── README.md ├── NativeControls │ ├── NativeControls.h │ ├── NativeControls.js │ ├── NativeControls.m │ ├── index.1.6.0.html │ └── index.html ├── NavigationBar │ └── REPO MOVED.txt ├── NotificationEx │ ├── LoadingView.h │ ├── LoadingView.m │ ├── NotificationEx.h │ ├── NotificationEx.m │ ├── README.md │ ├── UIColor-Expanded.h │ ├── UIColor-Expanded.m │ ├── index.html │ └── notificationex.js ├── OCRPlugin │ └── README.md ├── PDFViewer │ └── README.md ├── PayPalPlugin │ ├── .gitignore │ └── README.md ├── PickerView │ └── README.md ├── PowerManagement │ ├── LICENSE │ ├── PowerManagement.h │ ├── PowerManagement.m │ ├── README.md │ └── powermanagement.js ├── PrintPlugin │ ├── PrintPlugin.h │ ├── PrintPlugin.js │ ├── PrintPlugin.m │ ├── READEME.md │ └── index.html ├── ProgressHud │ ├── ProgressHud.h │ ├── ProgressHud.js │ ├── ProgressHud.m │ ├── README.md │ └── libs │ │ ├── MBProgressHUD.h │ │ └── MBProgressHUD.m ├── PushNotification │ └── README.md ├── README.md ├── SMSComposer │ ├── AddMessageUIframework.PNG │ ├── AddSMSComposerKey.PNG │ ├── README.md │ ├── SMSComposer.h │ ├── SMSComposer.js │ ├── SMSComposer.m │ └── index.html ├── ScreenOrientation │ ├── README.md │ ├── ScreenOrientation.h │ ├── ScreenOrientation.js │ └── ScreenOrientation.m ├── Screenshot │ ├── README.md │ ├── Screenshot.h │ ├── Screenshot.js │ └── Screenshot.m ├── SecureDeviceIdentifier │ └── README.md ├── ShareKitPlugin │ ├── README.md │ ├── SHKSharer+Phonegap.h │ ├── SHKSharer+Phonegap.m │ ├── ShareKitPlugin.h │ ├── ShareKitPlugin.js │ ├── ShareKitPlugin.m │ └── example-config │ │ ├── AppDelegate.m │ │ ├── MySHKConfiguration.h │ │ └── MySHKConfiguration.m ├── StatusBarNotifier │ ├── FDStatusBarNotifierView.h │ ├── FDStatusBarNotifierView.m │ ├── README.md │ ├── StatusBarNotifier.h │ ├── StatusBarNotifier.js │ └── StatusBarNotifier.m ├── TabBar │ └── REPO MOVED.txt ├── Testflight │ ├── CDVTestFlight.h │ ├── CDVTestFlight.m │ ├── README.md │ └── TestFlight.js ├── Twitter │ ├── LICENSE.md │ ├── README.md │ ├── TwitterPlugin.h │ ├── TwitterPlugin.m │ ├── example │ │ ├── www │ │ │ ├── demo.js │ │ │ ├── index.html │ │ │ └── ninja-lolcat.gif │ │ └── www2.0 │ │ │ ├── TwitterPlugin.js │ │ │ ├── config.xml │ │ │ ├── cordova-2.0.0.js │ │ │ ├── css │ │ │ └── index.css │ │ │ ├── demo.js │ │ │ ├── img │ │ │ └── cordova.png │ │ │ ├── index.html │ │ │ ├── js │ │ │ └── index.js │ │ │ ├── ninja-lolcat.gif │ │ │ ├── res │ │ │ ├── icon │ │ │ │ ├── cordova_128.png │ │ │ │ ├── cordova_16.png │ │ │ │ ├── cordova_24.png │ │ │ │ ├── cordova_256.png │ │ │ │ ├── cordova_32.png │ │ │ │ ├── cordova_48.png │ │ │ │ ├── cordova_512.png │ │ │ │ ├── cordova_64.png │ │ │ │ ├── cordova_android_36.png │ │ │ │ ├── cordova_android_48.png │ │ │ │ ├── cordova_android_72.png │ │ │ │ ├── cordova_android_96.png │ │ │ │ ├── cordova_bb_80.png │ │ │ │ ├── cordova_ios_114.png │ │ │ │ ├── cordova_ios_144.png │ │ │ │ ├── cordova_ios_57.png │ │ │ │ └── cordova_ios_72.png │ │ │ └── screen │ │ │ │ ├── android_hdpi_landscape.png │ │ │ │ ├── android_hdpi_portrait.png │ │ │ │ ├── android_ldpi_landscape.png │ │ │ │ ├── android_ldpi_portrait.png │ │ │ │ ├── android_mdpi_landscape.png │ │ │ │ ├── android_mdpi_portrait.png │ │ │ │ ├── android_xhdpi_landscape.png │ │ │ │ ├── android_xhdpi_portrait.png │ │ │ │ ├── blackberry_transparent_300.png │ │ │ │ ├── blackberry_transparent_400.png │ │ │ │ ├── ipad_landscape.png │ │ │ │ ├── ipad_portrait.png │ │ │ │ ├── ipad_retina_landscape.png │ │ │ │ ├── ipad_retina_portrait.png │ │ │ │ ├── iphone_landscape.png │ │ │ │ ├── iphone_portrait.png │ │ │ │ ├── iphone_retina_landscape.png │ │ │ │ ├── iphone_retina_portrait.png │ │ │ │ └── windows_phone_portrait.jpg │ │ │ ├── spec.html │ │ │ └── spec │ │ │ ├── helper.js │ │ │ └── index.js │ └── js │ │ └── TwitterPlugin.js ├── UAPushNotifications │ ├── .gitignore │ └── README.md ├── UniqueIdentifier │ ├── README.md │ ├── UniqueIdentifier.h │ ├── UniqueIdentifier.js │ └── UniqueIdentifier.m ├── VolumeSlider │ └── README.md ├── WaitingDialog │ ├── README.md │ ├── WaitingDialog.h │ ├── WaitingDialog.js │ └── WaitingDialog.m ├── WebInspector │ ├── CDVWebInspector.m │ ├── LICENSE │ ├── README.md │ └── cordova-WebInspector.js ├── callvenderapp │ ├── README.md │ ├── callvenderapp.h │ ├── callvenderapp.js │ ├── callvenderapp.m │ └── example.html ├── card.io │ ├── CardIOPGPlugin.h │ ├── CardIOPGPlugin.js │ ├── CardIOPGPlugin.m │ └── readme.md └── iCloudKV │ ├── README.md │ ├── iCloudKV.h │ ├── iCloudKV.js │ └── iCloudKV.m └── iPhone ├── ActionSheet ├── ActionSheet.h ├── ActionSheet.js ├── ActionSheet.m └── README.md ├── AdPlugin ├── .gitignore ├── README.md ├── SAiOSAdPlugin.h ├── SAiOSAdPlugin.js ├── SAiOSAdPlugin.m └── index.html ├── ApplicationPreferences ├── README.md ├── applicationPreferences.h ├── applicationPreferences.js └── applicationPreferences.m ├── AudioEncode ├── AudioEncode.h ├── AudioEncode.js ├── AudioEncode.m └── README.md ├── AudioRecord ├── AudioRecord.h ├── AudioRecord.js ├── AudioRecord.m └── README.md ├── Badge ├── Badge.h ├── Badge.js └── Badge.m ├── BarcodeScanner ├── PGBarcodeScanner.mm ├── README.md ├── barcodescanner.js ├── build │ ├── .gitignore │ ├── Makefile │ └── onefile-zxing.py ├── scannerOverlay.xib ├── test │ ├── Makefile │ ├── README.md │ ├── desktop-app │ │ ├── .gitignore │ │ ├── desktop-app.js │ │ ├── images │ │ │ ├── code_128-1.jpg │ │ │ ├── code_128-1.txt │ │ │ ├── code_39-1.gif │ │ │ ├── code_39-1.txt │ │ │ ├── data_matrix-1.jpg │ │ │ ├── data_matrix-1.txt │ │ │ ├── ean_13-1.jpg │ │ │ ├── ean_13-1.txt │ │ │ ├── ean_8-1.gif │ │ │ ├── ean_8-1.txt │ │ │ ├── qr_code-large.gif │ │ │ ├── qr_code-large.txt │ │ │ ├── qr_code-medium.jpg │ │ │ ├── qr_code-medium.txt │ │ │ ├── qr_code-small.png │ │ │ ├── qr_code-small.txt │ │ │ ├── upc_a-1.jpg │ │ │ ├── upc_a-1.txt │ │ │ ├── upc_a-2.jpg │ │ │ ├── upc_a-2.txt │ │ │ ├── upc_e-1.gif │ │ │ ├── upc_e-1.txt │ │ │ ├── upc_e-2.jpg │ │ │ └── upc_e-2.txt │ │ └── index.html │ ├── phonegap-app │ │ ├── .gitignore │ │ ├── images │ │ │ └── .gitignore │ │ ├── index.html │ │ └── phonegap-app.js │ └── rebuild-tests-json.py ├── zxing-all-in-one.cpp └── zxing-all-in-one.h ├── BundleFileReader ├── BundleFileReader.h ├── BundleFileReader.m ├── README.md └── bundle_file_reader.js ├── CalendarPlugin ├── README ├── calendar.js ├── calendarPlugin.h └── calendarPlugin.m ├── ChildBrowser ├── ChildBrowser.bundle │ ├── arrow_left.png │ ├── arrow_left@2x.png │ ├── arrow_right.png │ ├── arrow_right@2x.png │ ├── but_refresh.png │ ├── but_refresh@2x.png │ ├── compass.png │ └── compass@2x.png ├── ChildBrowser.js ├── ChildBrowserCommand.h ├── ChildBrowserCommand.m ├── ChildBrowserViewController.h ├── ChildBrowserViewController.m ├── ChildBrowserViewController.xib ├── FBConnectExample │ ├── FBConnect.js │ ├── README.txt │ ├── facebook.html │ └── index.html └── README.txt ├── ClipboardPlugin ├── ClipboardPlugin.h ├── ClipboardPlugin.m ├── README.md └── clipboardPlugin.js ├── DatePicker ├── DatePicker.h ├── DatePicker.js ├── DatePicker.m └── example │ ├── .gitignore │ ├── Classes │ ├── exampleAppDelegate.h │ └── exampleAppDelegate.m │ ├── Default-Landscape.png │ ├── Default-Portrait.png │ ├── Default.png │ ├── PhoneGap.plist │ ├── PhoneGapBuildSettings.xcconfig │ ├── Plugins │ └── README │ ├── example-Info.plist │ ├── example.xcodeproj │ └── project.pbxproj │ ├── example_Prefix.pch │ ├── icon-72.png │ ├── icon.png │ ├── icon@2x.png │ ├── main.m │ └── www │ ├── DatePicker.js │ ├── index.html │ ├── phonegap.0.9.4.js │ └── phonegap.0.9.4.min.js ├── EmailComposer ├── EmailComposer.h ├── EmailComposer.js ├── EmailComposer.m └── readme.md ├── ExternalScreen ├── README ├── plugin │ ├── ExternalScreen.js │ ├── PGExternalScreen.h │ └── PGExternalScreen.m └── samples │ ├── basic usage │ └── www │ │ ├── index.html │ │ └── secondary.html │ ├── fbi rss │ └── www │ │ ├── assets │ │ ├── activityIndicator.css │ │ └── styles.css │ │ ├── index.html │ │ └── js │ │ ├── application.js │ │ ├── iscroll.js │ │ ├── jquery-1.7.1.min.js │ │ └── noClickDelay.js │ └── fleet manager │ └── www │ ├── assets │ ├── activityIndicator.css │ ├── airplane.png │ └── styles.css │ ├── index.html │ ├── js │ ├── application.js │ ├── iscroll.js │ ├── jquery-1.7.1.min.js │ └── noClickDelay.js │ └── map.html ├── FileUploader ├── FileUploader.h ├── FileUploader.m ├── README.md └── fileuploader.js ├── GapSocket ├── GapSocket.js ├── GapSocketCommand.h ├── GapSocketCommand.m └── Readme.txt ├── Globalization ├── Globalization.h ├── Globalization.js ├── Globalization.m ├── README.md ├── globalization.tests.js └── index.html ├── GoogleAnalytics ├── GoogSDK │ ├── GANTracker.h │ └── libGoogleAnalytics.a ├── GoogleAnalyticsPlugin.h ├── GoogleAnalyticsPlugin.js ├── GoogleAnalyticsPlugin.m └── README.md ├── HockeyApp ├── HockeyApp.h ├── HockeyApp.js ├── HockeyApp.m ├── README ├── jqmHockeyApp │ ├── .gitignore │ ├── README │ ├── jqmHockeyApp.xcodeproj │ │ ├── .gitignore │ │ └── project.pbxproj │ ├── jqmHockeyApp │ │ ├── .gitignore │ │ ├── Classes │ │ │ ├── AppDelegate.h │ │ │ └── AppDelegate.m │ │ ├── HockeyApp │ │ │ ├── HockeyKit │ │ │ │ ├── BWApp.h │ │ │ │ ├── BWApp.m │ │ │ │ ├── BWGlobal.h │ │ │ │ ├── BWGlobal.m │ │ │ │ ├── BWHockeyManager.h │ │ │ │ ├── BWHockeyManager.m │ │ │ │ ├── BWHockeySettingsViewController.h │ │ │ │ ├── BWHockeySettingsViewController.m │ │ │ │ ├── BWHockeyViewController.h │ │ │ │ ├── BWHockeyViewController.m │ │ │ │ ├── Helper │ │ │ │ │ ├── NSString+HockeyAdditions.h │ │ │ │ │ ├── NSString+HockeyAdditions.m │ │ │ │ │ ├── PSAppStoreHeader.h │ │ │ │ │ ├── PSAppStoreHeader.m │ │ │ │ │ ├── PSStoreButton.h │ │ │ │ │ ├── PSStoreButton.m │ │ │ │ │ ├── PSWebTableViewCell.h │ │ │ │ │ ├── PSWebTableViewCell.m │ │ │ │ │ ├── UIImage+HockeyAdditions.h │ │ │ │ │ └── UIImage+HockeyAdditions.m │ │ │ │ ├── Hockey.bundle │ │ │ │ │ ├── IconGradient.png │ │ │ │ │ ├── IconGradient@2x.png │ │ │ │ │ ├── authorize_denied.png │ │ │ │ │ ├── authorize_denied@2x.png │ │ │ │ │ ├── authorize_request.png │ │ │ │ │ ├── authorize_request@2x.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── buttonHighlight.png │ │ │ │ │ ├── buttonHighlight@2x.png │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ │ ├── gear.png │ │ │ │ │ ├── gear@2x.png │ │ │ │ │ └── it.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ ├── JSON │ │ │ │ │ ├── JSONKit.h │ │ │ │ │ ├── JSONKit.m │ │ │ │ │ └── README.md │ │ │ │ └── LICENSE.txt │ │ │ └── QuincyKit │ │ │ │ ├── BWQuincyManager.h │ │ │ │ ├── BWQuincyManager.m │ │ │ │ ├── CrashReporter.framework │ │ │ │ ├── CrashReporter │ │ │ │ ├── Headers │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── CrashReporter │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── CrashReporter.h │ │ │ │ │ │ ├── PLCrashReport.h │ │ │ │ │ │ ├── PLCrashReportApplicationInfo.h │ │ │ │ │ │ ├── PLCrashReportBinaryImageInfo.h │ │ │ │ │ │ ├── PLCrashReportExceptionInfo.h │ │ │ │ │ │ ├── PLCrashReportFormatter.h │ │ │ │ │ │ ├── PLCrashReportProcessInfo.h │ │ │ │ │ │ ├── PLCrashReportSignalInfo.h │ │ │ │ │ │ ├── PLCrashReportSystemInfo.h │ │ │ │ │ │ ├── PLCrashReportTextFormatter.h │ │ │ │ │ │ ├── PLCrashReportThreadInfo.h │ │ │ │ │ │ └── PLCrashReporter.h │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ │ ├── LICENSE.txt │ │ │ │ └── Quincy.bundle │ │ │ │ ├── de.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── en.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── es.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── fr.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── it.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── ja.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── nl.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── pt-PT.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── pt.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── tr.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ ├── PhoneGap.plist │ │ ├── Plugins │ │ │ └── README │ │ ├── Resources │ │ │ ├── Capture.bundle │ │ │ │ ├── controls_bg.png │ │ │ │ ├── controls_bg@2x.png │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ ├── microphone.png │ │ │ │ ├── microphone@2x.png │ │ │ │ ├── microphone~ipad.png │ │ │ │ ├── record_button.png │ │ │ │ ├── record_button@2x.png │ │ │ │ ├── record_button~ipad.png │ │ │ │ ├── recording_bg.png │ │ │ │ ├── recording_bg@2x.png │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ ├── stop_button.png │ │ │ │ ├── stop_button@2x.png │ │ │ │ └── stop_button~ipad.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── icons │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ └── splash │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── jqmHockeyApp-Info.plist │ │ ├── jqmHockeyApp-Prefix.pch │ │ └── main.m │ └── www │ │ ├── .gitignore │ │ ├── index.html │ │ ├── jqmHockeyApp.js │ │ └── lib │ │ ├── jquery │ │ ├── jquery.js │ │ └── jquerymobile │ │ │ ├── images │ │ │ ├── ajax-loader.png │ │ │ ├── icon-search-black.png │ │ │ ├── icons-18-black.png │ │ │ ├── icons-18-white.png │ │ │ ├── icons-36-black.png │ │ │ └── icons-36-white.png │ │ │ ├── jquery.mobile-1.0b3.css │ │ │ ├── jquery.mobile-1.0b3.js │ │ │ ├── jquery.mobile-1.0b3.min.css │ │ │ └── jquery.mobile-1.0b3.min.js │ │ └── phonegap │ │ ├── phonegap-1.0.0.js │ │ └── plugins │ │ └── .gitignore ├── pluginHockeyApp │ ├── .gitignore │ ├── README │ ├── pluginHockeyApp.xcodeproj │ │ ├── .gitignore │ │ └── project.pbxproj │ ├── pluginHockeyApp │ │ ├── Classes │ │ │ ├── AppDelegate.h │ │ │ └── AppDelegate.m │ │ ├── HockeyAppKit │ │ │ ├── HockeyKit │ │ │ │ ├── BWApp.h │ │ │ │ ├── BWApp.m │ │ │ │ ├── BWGlobal.h │ │ │ │ ├── BWGlobal.m │ │ │ │ ├── BWHockeyManager.h │ │ │ │ ├── BWHockeyManager.m │ │ │ │ ├── BWHockeySettingsViewController.h │ │ │ │ ├── BWHockeySettingsViewController.m │ │ │ │ ├── BWHockeyViewController.h │ │ │ │ ├── BWHockeyViewController.m │ │ │ │ ├── Helper │ │ │ │ │ ├── NSString+HockeyAdditions.h │ │ │ │ │ ├── NSString+HockeyAdditions.m │ │ │ │ │ ├── PSAppStoreHeader.h │ │ │ │ │ ├── PSAppStoreHeader.m │ │ │ │ │ ├── PSStoreButton.h │ │ │ │ │ ├── PSStoreButton.m │ │ │ │ │ ├── PSWebTableViewCell.h │ │ │ │ │ ├── PSWebTableViewCell.m │ │ │ │ │ ├── UIImage+HockeyAdditions.h │ │ │ │ │ └── UIImage+HockeyAdditions.m │ │ │ │ ├── Hockey.bundle │ │ │ │ │ ├── IconGradient.png │ │ │ │ │ ├── IconGradient@2x.png │ │ │ │ │ ├── authorize_denied.png │ │ │ │ │ ├── authorize_denied@2x.png │ │ │ │ │ ├── authorize_request.png │ │ │ │ │ ├── authorize_request@2x.png │ │ │ │ │ ├── bg.png │ │ │ │ │ ├── buttonHighlight.png │ │ │ │ │ ├── buttonHighlight@2x.png │ │ │ │ │ ├── de.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ │ ├── en.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ │ ├── gear.png │ │ │ │ │ ├── gear@2x.png │ │ │ │ │ ├── it.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ │ └── sv.lproj │ │ │ │ │ │ └── Hockey.strings │ │ │ │ ├── JSON │ │ │ │ │ ├── JSONKit.h │ │ │ │ │ ├── JSONKit.m │ │ │ │ │ └── README.md │ │ │ │ └── LICENSE.txt │ │ │ └── QuincyKit │ │ │ │ ├── BWQuincyManager.h │ │ │ │ ├── BWQuincyManager.m │ │ │ │ ├── CrashReporter.framework │ │ │ │ ├── CrashReporter │ │ │ │ ├── Headers │ │ │ │ ├── Resources │ │ │ │ └── Versions │ │ │ │ │ ├── A │ │ │ │ │ ├── CrashReporter │ │ │ │ │ ├── Headers │ │ │ │ │ │ ├── CrashReporter.h │ │ │ │ │ │ ├── PLCrashReport.h │ │ │ │ │ │ ├── PLCrashReportApplicationInfo.h │ │ │ │ │ │ ├── PLCrashReportBinaryImageInfo.h │ │ │ │ │ │ ├── PLCrashReportExceptionInfo.h │ │ │ │ │ │ ├── PLCrashReportFormatter.h │ │ │ │ │ │ ├── PLCrashReportProcessInfo.h │ │ │ │ │ │ ├── PLCrashReportSignalInfo.h │ │ │ │ │ │ ├── PLCrashReportSystemInfo.h │ │ │ │ │ │ ├── PLCrashReportTextFormatter.h │ │ │ │ │ │ ├── PLCrashReportThreadInfo.h │ │ │ │ │ │ └── PLCrashReporter.h │ │ │ │ │ └── Resources │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── Current │ │ │ │ ├── LICENSE.txt │ │ │ │ └── Quincy.bundle │ │ │ │ ├── de.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── en.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── es.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── fr.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── it.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── ja.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── nl.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── pt-PT.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── pt.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── tr.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ ├── zh_CN.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ │ │ └── zh_TW.lproj │ │ │ │ ├── Quincy.strings │ │ │ │ └── QuincyAlternate.strings │ │ ├── PhoneGap.plist │ │ ├── Plugins │ │ │ └── README │ │ ├── Resources │ │ │ ├── Capture.bundle │ │ │ │ ├── controls_bg.png │ │ │ │ ├── controls_bg@2x.png │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ ├── microphone.png │ │ │ │ ├── microphone@2x.png │ │ │ │ ├── microphone~ipad.png │ │ │ │ ├── record_button.png │ │ │ │ ├── record_button@2x.png │ │ │ │ ├── record_button~ipad.png │ │ │ │ ├── recording_bg.png │ │ │ │ ├── recording_bg@2x.png │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ ├── stop_button.png │ │ │ │ ├── stop_button@2x.png │ │ │ │ └── stop_button~ipad.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── icons │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ └── splash │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── main.m │ │ ├── pluginHockeyApp-Info.plist │ │ └── pluginHockeyApp-Prefix.pch │ └── www │ │ ├── .gitignore │ │ ├── HockeyApp.js │ │ ├── index.html │ │ └── phonegap-1.0.0.js └── projectFiles │ ├── README │ ├── gitAlong │ └── makeIT ├── InAppPurchaseManager ├── InAppPurchaseManager.h ├── InAppPurchaseManager.js ├── InAppPurchaseManager.m ├── README.md ├── SKProduct+LocalizedPrice.h └── SKProduct+LocalizedPrice.m ├── Keychain ├── KeychainPlugin-Host │ ├── .gitignore │ ├── Classes │ │ ├── paypal_plugin_hostAppDelegate.h │ │ └── paypal_plugin_hostAppDelegate.m │ ├── Default-Landscape.png │ ├── Default-Portrait.png │ ├── Default.png │ ├── PhoneGap.plist │ ├── PhoneGapBuildSettings.xcconfig │ ├── Resources-iPad │ │ └── README │ ├── icon-72.png │ ├── icon.png │ ├── keychain-plugin-host.xcodeproj │ │ ├── .gitignore │ │ └── project.pbxproj │ ├── main.m │ ├── paypal_plugin_host-Info.plist │ ├── paypal_plugin_host_Prefix.pch │ └── www │ │ ├── .gitignore │ │ ├── index.html │ │ └── master.css ├── README.md ├── SAiOSKeychainPlugin.h ├── SAiOSKeychainPlugin.js └── SAiOSKeychainPlugin.m ├── LocalNotification ├── example │ ├── css │ │ └── style.css │ ├── images │ │ └── header.png │ ├── index.html │ └── js │ │ ├── core │ │ ├── jQuery.js │ │ └── phonegap-1.2.0.js │ │ ├── init.js │ │ └── plugins │ │ └── LocalNotification.js ├── plugin │ ├── LocalNotification.h │ ├── LocalNotification.js │ └── LocalNotification.m ├── project │ ├── localNotifications.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcuserdata │ │ │ │ └── Drew.xcuserdatad │ │ │ │ └── UserInterfaceState.xcuserstate │ │ └── xcuserdata │ │ │ └── Drew.xcuserdatad │ │ │ ├── xcdebugger │ │ │ └── Breakpoints.xcbkptlist │ │ │ └── xcschemes │ │ │ ├── localNotifications.xcscheme │ │ │ └── xcschememanagement.plist │ ├── localNotifications │ │ ├── Classes │ │ │ ├── AppDelegate.h │ │ │ └── AppDelegate.m │ │ ├── LocalNotification.h │ │ ├── LocalNotification.m │ │ ├── PhoneGap.plist │ │ ├── Plugins │ │ │ └── README │ │ ├── Resources │ │ │ ├── Capture.bundle │ │ │ │ ├── controls_bg.png │ │ │ │ ├── controls_bg@2x.png │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ ├── microphone.png │ │ │ │ ├── microphone@2x.png │ │ │ │ ├── microphone~ipad.png │ │ │ │ ├── record_button.png │ │ │ │ ├── record_button@2x.png │ │ │ │ ├── record_button~ipad.png │ │ │ │ ├── recording_bg.png │ │ │ │ ├── recording_bg@2x.png │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ ├── stop_button.png │ │ │ │ ├── stop_button@2x.png │ │ │ │ └── stop_button~ipad.png │ │ │ ├── en.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── es.lproj │ │ │ │ └── Localizable.strings │ │ │ ├── icons │ │ │ │ ├── icon-72.png │ │ │ │ ├── icon.png │ │ │ │ └── icon@2x.png │ │ │ └── splash │ │ │ │ ├── Default.png │ │ │ │ └── Default@2x.png │ │ ├── en.lproj │ │ │ └── InfoPlist.strings │ │ ├── horn.caf │ │ ├── localNotifications-Info.plist │ │ ├── localNotifications-Prefix.pch │ │ ├── main.m │ │ ├── steam.caf │ │ ├── triangle.caf │ │ ├── whistle.caf │ │ └── www │ │ │ ├── css │ │ │ └── style.css │ │ │ ├── images │ │ │ └── header.png │ │ │ ├── index.html │ │ │ └── js │ │ │ ├── core │ │ │ ├── jQuery.js │ │ │ └── phonegap-1.2.0.js │ │ │ ├── init.js │ │ │ └── plugins │ │ │ └── LocalNotification.js │ └── www │ │ ├── index.html │ │ └── phonegap-1.2.0.js └── readme.md ├── Localizable ├── README.md ├── localizable.h ├── localizable.js └── localizable.m ├── LowLatencyAudio ├── README.txt ├── examples │ ├── basic │ │ ├── assets │ │ │ ├── cymbal.mp3 │ │ │ └── drum.mp3 │ │ └── index.html │ ├── drum machine │ │ ├── assets │ │ │ ├── README.txt │ │ │ ├── bass drum.mp3 │ │ │ ├── bongo.mp3 │ │ │ ├── carbonFiber.png │ │ │ ├── high hat closed.mp3 │ │ │ └── snare drum.mp3 │ │ └── index.html │ └── game simulator │ │ ├── assets │ │ ├── README.txt │ │ └── background.mp3 │ │ └── index.html └── src │ ├── PGLowLatencyAudio.h │ ├── PGLowLatencyAudio.js │ ├── PGLowLatencyAudio.m │ ├── PGLowLatencyAudioAsset.h │ └── PGLowLatencyAudioAsset.m ├── MapKitPlug ├── README.md ├── example │ └── index.html └── src │ ├── AsyncImageView.h │ ├── AsyncImageView.m │ ├── MapKit.h │ ├── MapKit.m │ ├── MapKitPlug.js │ ├── PGAnnotation.h │ ├── PGAnnotation.m │ ├── icon.png │ └── map-close-button.png ├── MessageBox ├── MessageBox.h ├── MessageBox.js ├── MessageBox.m └── README.md ├── NativeControls ├── NativeControls.h ├── NativeControls.js └── NativeControls.m ├── NotificationEx ├── LoadingView.h ├── LoadingView.m ├── NotificationEx.h ├── NotificationEx.m ├── README.md ├── UIColor-Expanded.h ├── UIColor-Expanded.m ├── index.html └── notificationex.js ├── PayPalPlugin ├── .EXAMPLES │ ├── DO_NOT_ADD_PayPalPlugin-Hosts.md │ ├── PayPalPLugin-Host141 │ │ ├── PayPalPLugin-Host141.xcodeproj │ │ │ ├── project.pbxproj │ │ │ ├── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcuserdata │ │ │ │ │ └── randymcmillan.xcuserdatad │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ └── xcuserdata │ │ │ │ └── randymcmillan.xcuserdatad │ │ │ │ └── xcschemes │ │ │ │ ├── PayPalPLugin-Host141.xcscheme │ │ │ │ └── xcschememanagement.plist │ │ ├── PayPalPLugin-Host141 │ │ │ ├── Classes │ │ │ │ ├── AppDelegate.h │ │ │ │ ├── AppDelegate.m │ │ │ │ ├── MainViewController.h │ │ │ │ ├── MainViewController.m │ │ │ │ └── MainViewController.xib │ │ │ ├── PayPalPLugin-Host141-Info.plist │ │ │ ├── PayPalPLugin-Host141-Prefix.pch │ │ │ ├── PhoneGap.plist │ │ │ ├── Plugins │ │ │ │ └── README │ │ │ ├── Resources │ │ │ │ ├── Capture.bundle │ │ │ │ │ ├── controls_bg.png │ │ │ │ │ ├── controls_bg@2x.png │ │ │ │ │ ├── controls_bg~ipad.png │ │ │ │ │ ├── microphone.png │ │ │ │ │ ├── microphone@2x.png │ │ │ │ │ ├── microphone~ipad.png │ │ │ │ │ ├── record_button.png │ │ │ │ │ ├── record_button@2x.png │ │ │ │ │ ├── record_button~ipad.png │ │ │ │ │ ├── recording_bg.png │ │ │ │ │ ├── recording_bg@2x.png │ │ │ │ │ ├── recording_bg~ipad.png │ │ │ │ │ ├── stop_button.png │ │ │ │ │ ├── stop_button@2x.png │ │ │ │ │ └── stop_button~ipad.png │ │ │ │ ├── en.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── es.lproj │ │ │ │ │ └── Localizable.strings │ │ │ │ ├── icons │ │ │ │ │ ├── icon-72.png │ │ │ │ │ ├── icon.png │ │ │ │ │ └── icon@2x.png │ │ │ │ └── splash │ │ │ │ │ ├── Default.png │ │ │ │ │ └── Default@2x.png │ │ │ ├── en.lproj │ │ │ │ └── InfoPlist.strings │ │ │ └── main.m │ │ └── www │ │ │ ├── SAiOSPaypalPlugin.js │ │ │ ├── index.html │ │ │ ├── master.css │ │ │ └── phonegap-1.4.1.js │ └── PayPalPlugin-Host │ │ ├── .gitignore │ │ ├── Classes │ │ ├── paypal_plugin_hostAppDelegate.h │ │ └── paypal_plugin_hostAppDelegate.m │ │ ├── Default-Landscape.png │ │ ├── Default-Portrait.png │ │ ├── Default.png │ │ ├── PhoneGap.plist │ │ ├── PhoneGapBuildSettings.xcconfig │ │ ├── Resources-iPad │ │ └── README │ │ ├── icon-72.png │ │ ├── icon.png │ │ ├── main.m │ │ ├── paypal-plugin-host-iPad.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── randymcmillan.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── paypal-plugin-host.xcscheme │ │ │ └── xcschememanagement.plist │ │ ├── paypal-plugin-host.xcodeproj │ │ ├── .gitignore │ │ ├── project.pbxproj │ │ └── project.xcworkspace │ │ │ └── contents.xcworkspacedata │ │ ├── paypal_plugin_host-Info.plist │ │ ├── paypal_plugin_host_Prefix.pch │ │ └── www │ │ ├── .gitignore │ │ ├── index.html │ │ └── master.css ├── .gitignore ├── PayPal_MobilePayments_Library │ ├── MEPAddress.h │ ├── MEPAmounts.h │ ├── PayPal.h │ ├── PayPalContext.h │ ├── PayPalMEPPayment.h │ └── libPayPalMEP.a ├── README.md ├── SAiOSPaypalPlugin.h ├── SAiOSPaypalPlugin.js ├── SAiOSPaypalPlugin.m ├── index.html └── master.css ├── PrintPlugin ├── PrintPlugin.h ├── PrintPlugin.js ├── PrintPlugin.m ├── READEME.md └── index.html ├── Prompt ├── Prompt.h ├── Prompt.js ├── Prompt.m └── README.md ├── PushNotification ├── AppDelegate.h ├── AppDelegate.m ├── PushNotification.h ├── PushNotification.js ├── PushNotification.m ├── README.md └── demo.html ├── README.md ├── SMSComposer ├── README.md ├── SMSComposer.h ├── SMSComposer.js ├── SMSComposer.m └── index.html ├── ScreenShot ├── ScreenShot.h ├── ScreenShot.js └── ScreenShot.m ├── ShareKitPlugin ├── README.md ├── SHKSharer+Phonegap.h ├── SHKSharer+Phonegap.m ├── ShareKitPlugin.h ├── ShareKitPlugin.js ├── ShareKitPlugin.m └── example │ ├── example.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── erick.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── erick.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints.xcbkptlist │ │ └── xcschemes │ │ ├── example.xcscheme │ │ └── xcschememanagement.plist │ ├── example │ ├── Classes │ │ ├── AppDelegate.h │ │ └── AppDelegate.m │ ├── PhoneGap.plist │ ├── Plugins │ │ ├── README │ │ ├── SHKSharer+Phonegap.h │ │ ├── SHKSharer+Phonegap.m │ │ ├── ShareKitPlugin.h │ │ └── ShareKitPlugin.m │ ├── Resources │ │ ├── Capture.bundle │ │ │ ├── controls_bg.png │ │ │ ├── controls_bg@2x.png │ │ │ ├── controls_bg~ipad.png │ │ │ ├── microphone.png │ │ │ ├── microphone@2x.png │ │ │ ├── microphone~ipad.png │ │ │ ├── record_button.png │ │ │ ├── record_button@2x.png │ │ │ ├── record_button~ipad.png │ │ │ ├── recording_bg.png │ │ │ ├── recording_bg@2x.png │ │ │ ├── recording_bg~ipad.png │ │ │ ├── stop_button.png │ │ │ ├── stop_button@2x.png │ │ │ └── stop_button~ipad.png │ │ ├── en.lproj │ │ │ └── Localizable.strings │ │ ├── es.lproj │ │ │ └── Localizable.strings │ │ ├── icons │ │ │ ├── icon-72.png │ │ │ ├── icon.png │ │ │ └── icon@2x.png │ │ └── splash │ │ │ ├── Default.png │ │ │ └── Default@2x.png │ ├── ShareKit │ │ ├── Core │ │ │ ├── Base Sharer Classes │ │ │ │ ├── SHKOAuthSharer.h │ │ │ │ ├── SHKOAuthSharer.m │ │ │ │ ├── SHKSharer.h │ │ │ │ └── SHKSharer.m │ │ │ ├── Categories │ │ │ │ ├── UIWebView+SHK.h │ │ │ │ └── UIWebView+SHK.m │ │ │ ├── Helpers │ │ │ │ ├── Keychain │ │ │ │ │ ├── SFHFKeychainUtils.h │ │ │ │ │ └── SFHFKeychainUtils.m │ │ │ │ ├── OAuth │ │ │ │ │ ├── Categories │ │ │ │ │ │ ├── NSMutableURLRequest+Parameters.h │ │ │ │ │ │ ├── NSMutableURLRequest+Parameters.m │ │ │ │ │ │ ├── NSString+URLEncoding.h │ │ │ │ │ │ ├── NSString+URLEncoding.m │ │ │ │ │ │ ├── NSURL+Base.h │ │ │ │ │ │ └── NSURL+Base.m │ │ │ │ │ ├── Crytpo │ │ │ │ │ │ ├── Base64Transcoder.c │ │ │ │ │ │ ├── Base64Transcoder.h │ │ │ │ │ │ ├── hmac.c │ │ │ │ │ │ ├── hmac.h │ │ │ │ │ │ ├── sha1.c │ │ │ │ │ │ └── sha1.h │ │ │ │ │ ├── OAAsynchronousDataFetcher.h │ │ │ │ │ ├── OAAsynchronousDataFetcher.m │ │ │ │ │ ├── OAConsumer.h │ │ │ │ │ ├── OAConsumer.m │ │ │ │ │ ├── OADataFetcher.h │ │ │ │ │ ├── OADataFetcher.m │ │ │ │ │ ├── OAHMAC_SHA1SignatureProvider.h │ │ │ │ │ ├── OAHMAC_SHA1SignatureProvider.m │ │ │ │ │ ├── OAMutableURLRequest.h │ │ │ │ │ ├── OAMutableURLRequest.m │ │ │ │ │ ├── OAPlaintextSignatureProvider.h │ │ │ │ │ ├── OAPlaintextSignatureProvider.m │ │ │ │ │ ├── OARequestParameter.h │ │ │ │ │ ├── OARequestParameter.m │ │ │ │ │ ├── OAServiceTicket.h │ │ │ │ │ ├── OAServiceTicket.m │ │ │ │ │ ├── OASignatureProviding.h │ │ │ │ │ ├── OAToken.h │ │ │ │ │ ├── OAToken.m │ │ │ │ │ └── OAuthConsumer.h │ │ │ │ ├── SHKRequest.h │ │ │ │ └── SHKRequest.m │ │ │ ├── SHK.h │ │ │ ├── SHK.m │ │ │ ├── SHKItem.h │ │ │ ├── SHKItem.m │ │ │ ├── SHKOfflineSharer.h │ │ │ ├── SHKOfflineSharer.m │ │ │ └── SHKSharers.plist │ │ ├── Customize UI │ │ │ ├── SHKCustomFormController.h │ │ │ ├── SHKCustomFormController.m │ │ │ ├── SHKCustomFormFieldCell.h │ │ │ ├── SHKCustomFormFieldCell.m │ │ │ ├── SHKCustomShareMenu.h │ │ │ ├── SHKCustomShareMenu.m │ │ │ ├── SHKCustomShareMenuCell.h │ │ │ └── SHKCustomShareMenuCell.m │ │ ├── Localization │ │ │ ├── de.lproj │ │ │ │ └── Localizable.strings │ │ │ └── en.lproj │ │ │ │ └── Localizable.strings │ │ ├── SHKConfig.h │ │ ├── Sharers │ │ │ ├── Actions │ │ │ │ ├── Copy │ │ │ │ │ ├── SHKCopy.h │ │ │ │ │ └── SHKCopy.m │ │ │ │ ├── Email │ │ │ │ │ ├── SHKMail.h │ │ │ │ │ └── SHKMail.m │ │ │ │ ├── Open in Safari │ │ │ │ │ ├── SHKSafari.h │ │ │ │ │ └── SHKSafari.m │ │ │ │ └── Save to Album │ │ │ │ │ ├── SHKPhotoAlbum.h │ │ │ │ │ └── SHKPhotoAlbum.m │ │ │ └── Services │ │ │ │ ├── Delicious │ │ │ │ ├── SHKDelicious.h │ │ │ │ └── SHKDelicious.m │ │ │ │ ├── Facebook │ │ │ │ ├── FBConnect │ │ │ │ │ ├── FBConnect.bundle │ │ │ │ │ │ └── images │ │ │ │ │ │ │ ├── close.png │ │ │ │ │ │ │ ├── fbicon.png │ │ │ │ │ │ │ ├── login.png │ │ │ │ │ │ │ ├── login2.png │ │ │ │ │ │ │ ├── login2_down.png │ │ │ │ │ │ │ ├── login_down.png │ │ │ │ │ │ │ ├── logout.png │ │ │ │ │ │ │ └── logout_down.png │ │ │ │ │ ├── FBConnect.h │ │ │ │ │ ├── FBConnectGlobal.h │ │ │ │ │ ├── FBConnectGlobal.m │ │ │ │ │ ├── FBDialog.h │ │ │ │ │ ├── FBDialog.m │ │ │ │ │ ├── FBFeedDialog.h │ │ │ │ │ ├── FBFeedDialog.m │ │ │ │ │ ├── FBLoginButton.h │ │ │ │ │ ├── FBLoginButton.m │ │ │ │ │ ├── FBLoginDialog.h │ │ │ │ │ ├── FBLoginDialog.m │ │ │ │ │ ├── FBPermissionDialog.h │ │ │ │ │ ├── FBPermissionDialog.m │ │ │ │ │ ├── FBRequest.h │ │ │ │ │ ├── FBRequest.m │ │ │ │ │ ├── FBSession.h │ │ │ │ │ ├── FBSession.m │ │ │ │ │ ├── FBStreamDialog.h │ │ │ │ │ ├── FBStreamDialog.m │ │ │ │ │ ├── FBXMLHandler.h │ │ │ │ │ └── FBXMLHandler.m │ │ │ │ ├── SHKFBStreamDialog.h │ │ │ │ ├── SHKFBStreamDialog.m │ │ │ │ ├── SHKFacebook.h │ │ │ │ └── SHKFacebook.m │ │ │ │ ├── Google Reader │ │ │ │ ├── SHKGoogleReader.h │ │ │ │ └── SHKGoogleReader.m │ │ │ │ ├── Instapaper │ │ │ │ ├── SHKInstapaper.h │ │ │ │ └── SHKInstapaper.m │ │ │ │ ├── Pinboard │ │ │ │ ├── SHKPinboard.h │ │ │ │ └── SHKPinboard.m │ │ │ │ ├── Read It Later │ │ │ │ ├── SHKReadItLater.h │ │ │ │ └── SHKReadItLater.m │ │ │ │ ├── Tumblr │ │ │ │ ├── SHKTumblr.h │ │ │ │ └── SHKTumblr.m │ │ │ │ └── Twitter │ │ │ │ ├── SHKTwitter.h │ │ │ │ ├── SHKTwitter.m │ │ │ │ ├── SHKTwitterForm.h │ │ │ │ └── SHKTwitterForm.m │ │ └── UI │ │ │ ├── SHKActionSheet.h │ │ │ ├── SHKActionSheet.m │ │ │ ├── SHKActivityIndicator.h │ │ │ ├── SHKActivityIndicator.m │ │ │ ├── SHKFormController.h │ │ │ ├── SHKFormController.m │ │ │ ├── SHKFormFieldCell.h │ │ │ ├── SHKFormFieldCell.m │ │ │ ├── SHKFormFieldSettings.h │ │ │ ├── SHKFormFieldSettings.m │ │ │ ├── SHKOAuthView.h │ │ │ ├── SHKOAuthView.m │ │ │ ├── SHKShareMenu.h │ │ │ ├── SHKShareMenu.m │ │ │ ├── SHKViewControllerWrapper.h │ │ │ └── SHKViewControllerWrapper.m │ ├── en.lproj │ │ └── InfoPlist.strings │ ├── example-Info.plist │ ├── example-Prefix.pch │ └── main.m │ └── www │ ├── ShareKitPlugin.js │ ├── index.html │ └── phonegap-1.0.0.js ├── SoundPlug ├── README.md ├── SoundPlug.h └── SoundPlug.m ├── SplashScreen ├── README.md ├── SplashScreen.h ├── SplashScreen.js └── SplashScreen.m ├── TestFlight └── README.md ├── Torch └── README.md ├── Twitter ├── LICENSE.md ├── README.md ├── example │ └── www │ │ ├── demo.js │ │ ├── index.html │ │ └── ninja-lolcat.gif ├── install ├── native │ └── ios │ │ ├── TwitterPlugin.h │ │ └── TwitterPlugin.m ├── package.json └── www │ └── TwitterPlugin.js ├── UniqueIdentifier ├── PGUniqueIdentifier.h ├── PGUniqueIdentifier.m ├── README.md └── UniqueIdentifier.js ├── VolumeSlider ├── README.md ├── VolumeSlider.h ├── VolumeSlider.js └── VolumeSlider.m ├── __orphanage ├── Image.h ├── Image.m ├── Movie.h ├── Movie.m └── README.md └── networkActivityIndicator ├── README.md ├── networkActivityIndicator.h ├── networkActivityIndicator.js └── networkActivityIndicator.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /Android/AccountList/AccountList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AccountList/AccountList.java -------------------------------------------------------------------------------- /Android/AccountList/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AccountList/README -------------------------------------------------------------------------------- /Android/AccountList/accountlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AccountList/accountlist.js -------------------------------------------------------------------------------- /Android/ActionBarSherlockTabBar/REPO MOVED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ActionBarSherlockTabBar/REPO MOVED.txt -------------------------------------------------------------------------------- /Android/Analytics/1.6/APACHE2.0LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/APACHE2.0LICENSE -------------------------------------------------------------------------------- /Android/Analytics/1.6/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/LICENSE -------------------------------------------------------------------------------- /Android/Analytics/1.6/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/README.md -------------------------------------------------------------------------------- /Android/Analytics/1.6/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/config.xml -------------------------------------------------------------------------------- /Android/Analytics/1.6/docs/Analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/docs/Analytics.md -------------------------------------------------------------------------------- /Android/Analytics/1.6/lib/libGoogleAnalytics.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/lib/libGoogleAnalytics.jar -------------------------------------------------------------------------------- /Android/Analytics/1.6/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/manifest -------------------------------------------------------------------------------- /Android/Analytics/1.6/www/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/1.6/www/analytics.js -------------------------------------------------------------------------------- /Android/Analytics/2.0/APACHE2.0LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/APACHE2.0LICENSE -------------------------------------------------------------------------------- /Android/Analytics/2.0/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/LICENSE -------------------------------------------------------------------------------- /Android/Analytics/2.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/README.md -------------------------------------------------------------------------------- /Android/Analytics/2.0/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/config.xml -------------------------------------------------------------------------------- /Android/Analytics/2.0/docs/Analytics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/docs/Analytics.md -------------------------------------------------------------------------------- /Android/Analytics/2.0/lib/libGoogleAnalytics.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/lib/libGoogleAnalytics.jar -------------------------------------------------------------------------------- /Android/Analytics/2.0/manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/manifest -------------------------------------------------------------------------------- /Android/Analytics/2.0/www/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Analytics/2.0/www/analytics.js -------------------------------------------------------------------------------- /Android/AppBlade/AppBlade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AppBlade/AppBlade.js -------------------------------------------------------------------------------- /Android/AppBlade/AppBladePlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AppBlade/AppBladePlugin.java -------------------------------------------------------------------------------- /Android/AppBlade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AppBlade/README.md -------------------------------------------------------------------------------- /Android/AppPreferences/README.md: -------------------------------------------------------------------------------- 1 | # Moved to # 2 | https://github.com/macdonst/AppPreferences -------------------------------------------------------------------------------- /Android/AugmentedReality-Wikitude/Plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/AugmentedReality-Wikitude/Plugin/README.md -------------------------------------------------------------------------------- /Android/BackgroundService/1.8.1/MyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/1.8.1/MyService.java -------------------------------------------------------------------------------- /Android/BackgroundService/1.8.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/1.8.1/README.md -------------------------------------------------------------------------------- /Android/BackgroundService/1.8.1/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/1.8.1/index.html -------------------------------------------------------------------------------- /Android/BackgroundService/1.8.1/myService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/1.8.1/myService.js -------------------------------------------------------------------------------- /Android/BackgroundService/2.0.0/MyService.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/2.0.0/MyService.java -------------------------------------------------------------------------------- /Android/BackgroundService/2.0.0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/2.0.0/README.md -------------------------------------------------------------------------------- /Android/BackgroundService/2.0.0/index-2.0.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/2.0.0/index-2.0.0.html -------------------------------------------------------------------------------- /Android/BackgroundService/2.0.0/myService-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/2.0.0/myService-2.0.0.js -------------------------------------------------------------------------------- /Android/BackgroundService/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BackgroundService/README.md -------------------------------------------------------------------------------- /Android/BarcodeScanner/LibraryProject/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BarcodeScanner/LibraryProject/build.xml -------------------------------------------------------------------------------- /Android/BarcodeScanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BarcodeScanner/README.md -------------------------------------------------------------------------------- /Android/Biblesearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Biblesearch/README.md -------------------------------------------------------------------------------- /Android/Bluetooth/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Bluetooth/LICENSE.txt -------------------------------------------------------------------------------- /Android/Bluetooth/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Bluetooth/NOTICE.txt -------------------------------------------------------------------------------- /Android/Bluetooth/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Bluetooth/README -------------------------------------------------------------------------------- /Android/Bluetooth/assets/www/bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Bluetooth/assets/www/bluetooth.js -------------------------------------------------------------------------------- /Android/Bluetooth/assets/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Bluetooth/assets/www/index.html -------------------------------------------------------------------------------- /Android/BluetoothPlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BluetoothPlugin/LICENSE -------------------------------------------------------------------------------- /Android/BluetoothPlugin/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BluetoothPlugin/NOTICE -------------------------------------------------------------------------------- /Android/BluetoothPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BluetoothPlugin/README.md -------------------------------------------------------------------------------- /Android/BluetoothPlugin/assets/www/bluetooth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BluetoothPlugin/assets/www/bluetooth.js -------------------------------------------------------------------------------- /Android/BluetoothPlugin/assets/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BluetoothPlugin/assets/www/index.html -------------------------------------------------------------------------------- /Android/BluetoothPlugin/assets/www/jquery-1.6.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/BluetoothPlugin/assets/www/jquery-1.6.4.js -------------------------------------------------------------------------------- /Android/CallLog/CallListPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/CallLog/CallListPlugin.java -------------------------------------------------------------------------------- /Android/CallLog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/CallLog/README.md -------------------------------------------------------------------------------- /Android/CallLog/calllog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/CallLog/calllog.js -------------------------------------------------------------------------------- /Android/ChildBrowser/1.8.1/www/childbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ChildBrowser/1.8.1/www/childbrowser.js -------------------------------------------------------------------------------- /Android/ChildBrowser/2.0.0/www/childbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ChildBrowser/2.0.0/www/childbrowser.js -------------------------------------------------------------------------------- /Android/ChildBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ChildBrowser/README.md -------------------------------------------------------------------------------- /Android/ClipboardManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ClipboardManager/README.md -------------------------------------------------------------------------------- /Android/ClipboardManager/clipboardmanager.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ClipboardManager/clipboardmanager.js -------------------------------------------------------------------------------- /Android/ContactView/ContactView.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ContactView/ContactView.java -------------------------------------------------------------------------------- /Android/ContactView/ContactView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ContactView/ContactView.js -------------------------------------------------------------------------------- /Android/ContactView/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ContactView/README.txt -------------------------------------------------------------------------------- /Android/DatePicker/DatePickerPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/DatePicker/DatePickerPlugin.java -------------------------------------------------------------------------------- /Android/DatePicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/DatePicker/README.md -------------------------------------------------------------------------------- /Android/DatePicker/datePickerPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/DatePicker/datePickerPlugin.js -------------------------------------------------------------------------------- /Android/Diagnostic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Diagnostic/README.md -------------------------------------------------------------------------------- /Android/Diagnostic/www/diagnostic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Diagnostic/www/diagnostic.js -------------------------------------------------------------------------------- /Android/Downloader/Downloader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Downloader/Downloader.java -------------------------------------------------------------------------------- /Android/Downloader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Downloader/README.md -------------------------------------------------------------------------------- /Android/Downloader/downloader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Downloader/downloader.js -------------------------------------------------------------------------------- /Android/EmailComposerWithAttachments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/EmailComposerWithAttachments/readme.md -------------------------------------------------------------------------------- /Android/ExtractZipFile/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ExtractZipFile/README -------------------------------------------------------------------------------- /Android/ExtractZipFile/www/ZipPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ExtractZipFile/www/ZipPlugin.js -------------------------------------------------------------------------------- /Android/ExtractZipFile/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ExtractZipFile/www/index.html -------------------------------------------------------------------------------- /Android/ExtractZipFile/www/phonegap-1.3.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ExtractZipFile/www/phonegap-1.3.0.js -------------------------------------------------------------------------------- /Android/FacebookConnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/FacebookConnect/README.md -------------------------------------------------------------------------------- /Android/FileUploader/FileUploader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/FileUploader/FileUploader.java -------------------------------------------------------------------------------- /Android/FileUploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/FileUploader/README.md -------------------------------------------------------------------------------- /Android/FileUploader/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/FileUploader/fileuploader.js -------------------------------------------------------------------------------- /Android/ForegroundCamera/CameraActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/CameraActivity.java -------------------------------------------------------------------------------- /Android/ForegroundCamera/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/LICENSE -------------------------------------------------------------------------------- /Android/ForegroundCamera/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/NOTICE -------------------------------------------------------------------------------- /Android/ForegroundCamera/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/README.txt -------------------------------------------------------------------------------- /Android/ForegroundCamera/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/camera.js -------------------------------------------------------------------------------- /Android/ForegroundCamera/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/index.html -------------------------------------------------------------------------------- /Android/ForegroundCamera/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundCamera/strings.xml -------------------------------------------------------------------------------- /Android/ForegroundGallery/CameraActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/CameraActivity.java -------------------------------------------------------------------------------- /Android/ForegroundGallery/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/LICENSE -------------------------------------------------------------------------------- /Android/ForegroundGallery/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/NOTICE -------------------------------------------------------------------------------- /Android/ForegroundGallery/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/README.txt -------------------------------------------------------------------------------- /Android/ForegroundGallery/camera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/camera.js -------------------------------------------------------------------------------- /Android/ForegroundGallery/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/index.html -------------------------------------------------------------------------------- /Android/ForegroundGallery/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ForegroundGallery/strings.xml -------------------------------------------------------------------------------- /Android/FtpClient/README.md: -------------------------------------------------------------------------------- 1 | # Moved to # 2 | https://github.com/macdonst/FtpClient -------------------------------------------------------------------------------- /Android/Globalization/GlobalizationCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/GlobalizationCommand.java -------------------------------------------------------------------------------- /Android/Globalization/GlobalizationError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/GlobalizationError.java -------------------------------------------------------------------------------- /Android/Globalization/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/LICENSE -------------------------------------------------------------------------------- /Android/Globalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/README.md -------------------------------------------------------------------------------- /Android/Globalization/Resources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/Resources.java -------------------------------------------------------------------------------- /Android/Globalization/globalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/globalization.js -------------------------------------------------------------------------------- /Android/Globalization/globalization.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Globalization/globalization.tests.js -------------------------------------------------------------------------------- /Android/HeadsetWatcher/HeadsetWatcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/HeadsetWatcher/HeadsetWatcher.java -------------------------------------------------------------------------------- /Android/HeadsetWatcher/HeadsetWatcher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/HeadsetWatcher/HeadsetWatcher.js -------------------------------------------------------------------------------- /Android/HeadsetWatcher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/HeadsetWatcher/README.md -------------------------------------------------------------------------------- /Android/Hmac/HmacPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Hmac/HmacPlugin.java -------------------------------------------------------------------------------- /Android/Hmac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Hmac/README.md -------------------------------------------------------------------------------- /Android/Hmac/hmac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Hmac/hmac.js -------------------------------------------------------------------------------- /Android/HttpRequest/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/HttpRequest/readme.md -------------------------------------------------------------------------------- /Android/InAppBilling/inappbilling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/InAppBilling/inappbilling.js -------------------------------------------------------------------------------- /Android/InAppBilling/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/InAppBilling/readme.md -------------------------------------------------------------------------------- /Android/LocalNotification/AlarmHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/AlarmHelper.java -------------------------------------------------------------------------------- /Android/LocalNotification/AlarmOptions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/AlarmOptions.java -------------------------------------------------------------------------------- /Android/LocalNotification/AlarmReceiver.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/AlarmReceiver.java -------------------------------------------------------------------------------- /Android/LocalNotification/AlarmRestoreOnBoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/AlarmRestoreOnBoot.java -------------------------------------------------------------------------------- /Android/LocalNotification/LocalNotification.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/LocalNotification.java -------------------------------------------------------------------------------- /Android/LocalNotification/LocalNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/LocalNotification.js -------------------------------------------------------------------------------- /Android/LocalNotification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/README.md -------------------------------------------------------------------------------- /Android/LocalNotification/example_index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LocalNotification/example_index.html -------------------------------------------------------------------------------- /Android/LowLatencyAudio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LowLatencyAudio/README.txt -------------------------------------------------------------------------------- /Android/LowLatencyAudio/examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LowLatencyAudio/examples/basic/index.html -------------------------------------------------------------------------------- /Android/LowLatencyAudio/src/PGLowLatencyAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/LowLatencyAudio/src/PGLowLatencyAudio.js -------------------------------------------------------------------------------- /Android/MacAddress/MacAddress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/MacAddress/MacAddress.js -------------------------------------------------------------------------------- /Android/MacAddress/MacAddressPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/MacAddress/MacAddressPlugin.java -------------------------------------------------------------------------------- /Android/MacAddress/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/MacAddress/README.md -------------------------------------------------------------------------------- /Android/NFC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/NFC/README.md -------------------------------------------------------------------------------- /Android/OcrApiService/ocrapiservice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/OcrApiService/ocrapiservice.js -------------------------------------------------------------------------------- /Android/OcrApiService/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/OcrApiService/readme.md -------------------------------------------------------------------------------- /Android/PayPalPlugin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/PayPalPlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/LICENSE -------------------------------------------------------------------------------- /Android/PayPalPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/README.md -------------------------------------------------------------------------------- /Android/PayPalPlugin/assets/www/btn_donate_LG.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/assets/www/btn_donate_LG.gif -------------------------------------------------------------------------------- /Android/PayPalPlugin/assets/www/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/assets/www/demo.js -------------------------------------------------------------------------------- /Android/PayPalPlugin/assets/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/assets/www/index.html -------------------------------------------------------------------------------- /Android/PayPalPlugin/assets/www/paypal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/assets/www/paypal.js -------------------------------------------------------------------------------- /Android/PayPalPlugin/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PayPalPlugin/res/xml/config.xml -------------------------------------------------------------------------------- /Android/PhoneListener/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PhoneListener/README.md -------------------------------------------------------------------------------- /Android/PowerManagement/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PowerManagement/LICENSE -------------------------------------------------------------------------------- /Android/PowerManagement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PowerManagement/README.md -------------------------------------------------------------------------------- /Android/PowerManagement/assets/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/PowerManagement/assets/www/index.html -------------------------------------------------------------------------------- /Android/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/README -------------------------------------------------------------------------------- /Android/RemoteSound/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/RemoteSound/README.md -------------------------------------------------------------------------------- /Android/RemoteSound/RemoteSound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/RemoteSound/RemoteSound.js -------------------------------------------------------------------------------- /Android/RemoteSound/RemoteSoundPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/RemoteSound/RemoteSoundPlugin.java -------------------------------------------------------------------------------- /Android/Resources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Resources/README.md -------------------------------------------------------------------------------- /Android/Resources/Resources.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Resources/Resources.js -------------------------------------------------------------------------------- /Android/Resources/ResourcesPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Resources/ResourcesPlugin.java -------------------------------------------------------------------------------- /Android/SMS inbox_sent access/SMSReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMS inbox_sent access/SMSReader.java -------------------------------------------------------------------------------- /Android/SMS inbox_sent access/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMS inbox_sent access/readme.txt -------------------------------------------------------------------------------- /Android/SMS inbox_sent access/smsread.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMS inbox_sent access/smsread.js -------------------------------------------------------------------------------- /Android/SMSPlugin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMSPlugin/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/SMSPlugin/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMSPlugin/LICENSE.txt -------------------------------------------------------------------------------- /Android/SMSPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMSPlugin/README.md -------------------------------------------------------------------------------- /Android/SMSPlugin/assets/www/jquery-1.6.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMSPlugin/assets/www/jquery-1.6.min.js -------------------------------------------------------------------------------- /Android/SMSPlugin/assets/www/pluginexample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMSPlugin/assets/www/pluginexample.html -------------------------------------------------------------------------------- /Android/SMSPlugin/assets/www/smsplugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SMSPlugin/assets/www/smsplugin.js -------------------------------------------------------------------------------- /Android/Screenshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Screenshot/README.md -------------------------------------------------------------------------------- /Android/Screenshot/v1.8.1/www/Screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Screenshot/v1.8.1/www/Screenshot.js -------------------------------------------------------------------------------- /Android/Screenshot/v2.0.0/www/Screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Screenshot/v2.0.0/www/Screenshot.js -------------------------------------------------------------------------------- /Android/Share/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Share/README.md -------------------------------------------------------------------------------- /Android/Share/Share.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Share/Share.java -------------------------------------------------------------------------------- /Android/Share/share.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Share/share.js -------------------------------------------------------------------------------- /Android/ShopGap/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ShopGap/README.md -------------------------------------------------------------------------------- /Android/ShopGap/ShopGapPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ShopGap/ShopGapPlugin.java -------------------------------------------------------------------------------- /Android/ShopGap/shopgap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ShopGap/shopgap.js -------------------------------------------------------------------------------- /Android/SoftKeyboard/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SoftKeyboard/README.md -------------------------------------------------------------------------------- /Android/SoftKeyboard/SoftKeyBoard.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SoftKeyboard/SoftKeyBoard.java -------------------------------------------------------------------------------- /Android/SoftKeyboard/softkeyboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SoftKeyboard/softkeyboard.js -------------------------------------------------------------------------------- /Android/SpeechRecognizer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/SpeechRecognizer/README.md -------------------------------------------------------------------------------- /Android/StatusBarNotification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/StatusBarNotification/README.md -------------------------------------------------------------------------------- /Android/TTS/README.md: -------------------------------------------------------------------------------- 1 | # Moved to # 2 | https://github.com/macdonst/TTS -------------------------------------------------------------------------------- /Android/Torch/1.9/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/1.9/README.md -------------------------------------------------------------------------------- /Android/Torch/1.9/Torch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/1.9/Torch.js -------------------------------------------------------------------------------- /Android/Torch/1.9/TorchPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/1.9/TorchPlugin.java -------------------------------------------------------------------------------- /Android/Torch/2.1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/2.1/README.md -------------------------------------------------------------------------------- /Android/Torch/2.1/Torch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/2.1/Torch.js -------------------------------------------------------------------------------- /Android/Torch/2.1/Torch.js~: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/2.1/Torch.js~ -------------------------------------------------------------------------------- /Android/Torch/2.1/TorchPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Torch/2.1/TorchPlugin.java -------------------------------------------------------------------------------- /Android/Twitter/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Twitter/README -------------------------------------------------------------------------------- /Android/Twitter/www/twitter.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/Twitter/www/twitter.js -------------------------------------------------------------------------------- /Android/VideoPlayer/README.md: -------------------------------------------------------------------------------- 1 | # Moved to # 2 | https://github.com/macdonst/VideoPlayer -------------------------------------------------------------------------------- /Android/WACNapiPaymentPlugin/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WACNapiPaymentPlugin/AndroidManifest.xml -------------------------------------------------------------------------------- /Android/WACNapiPaymentPlugin/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WACNapiPaymentPlugin/LICENSE -------------------------------------------------------------------------------- /Android/WACNapiPaymentPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WACNapiPaymentPlugin/README.md -------------------------------------------------------------------------------- /Android/WACNapiPaymentPlugin/assets/www/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WACNapiPaymentPlugin/assets/www/demo.js -------------------------------------------------------------------------------- /Android/WACNapiPaymentPlugin/assets/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WACNapiPaymentPlugin/assets/www/index.html -------------------------------------------------------------------------------- /Android/WACNapiPaymentPlugin/assets/www/wac.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WACNapiPaymentPlugin/assets/www/wac.js -------------------------------------------------------------------------------- /Android/WaitingDialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WaitingDialog/README.md -------------------------------------------------------------------------------- /Android/WaitingDialog/WaitingDialog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WaitingDialog/WaitingDialog.java -------------------------------------------------------------------------------- /Android/WaitingDialog/WaitingDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WaitingDialog/WaitingDialog.js -------------------------------------------------------------------------------- /Android/WebIntent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WebIntent/README.md -------------------------------------------------------------------------------- /Android/WebIntent/WebIntent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WebIntent/WebIntent.java -------------------------------------------------------------------------------- /Android/WebIntent/webintent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WebIntent/webintent.js -------------------------------------------------------------------------------- /Android/WikitudeCamera/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WikitudeCamera/README.md -------------------------------------------------------------------------------- /Android/WikitudeCamera/WikitudeCamera.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WikitudeCamera/WikitudeCamera.java -------------------------------------------------------------------------------- /Android/WikitudeCamera/wikitudearintent.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WikitudeCamera/wikitudearintent.jar -------------------------------------------------------------------------------- /Android/WikitudeCamera/wikitudecamera.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/WikitudeCamera/wikitudecamera.js -------------------------------------------------------------------------------- /Android/YouTube Player API/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/YouTube Player API/README.md -------------------------------------------------------------------------------- /Android/ZeroConf/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ZeroConf/README.md -------------------------------------------------------------------------------- /Android/ZeroConf/ZeroConf.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ZeroConf/ZeroConf.java -------------------------------------------------------------------------------- /Android/ZeroConf/ZeroConf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Android/ZeroConf/ZeroConf.js -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/BarcodeScanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/BarcodeScanner.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/EncodeAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/EncodeAction.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS5/Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS5/Encoder.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS5/Library/COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS5/Library/COPYING -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS5/Library/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS5/Library/README.md -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS5/Library/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS5/Library/build.xml -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS5/Scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS5/Scanner.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS5/zxingcore.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS5/zxingcore.jar -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS6/Encoder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS6/Encoder.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/OS6/Scanner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/OS6/Scanner.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/README.md -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/ScanAction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/ScanAction.java -------------------------------------------------------------------------------- /BlackBerry/BarcodeScanner/barcodescanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/BarcodeScanner/barcodescanner.js -------------------------------------------------------------------------------- /BlackBerry/Biblesearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Biblesearch/README.md -------------------------------------------------------------------------------- /BlackBerry/ChildBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/ChildBrowser/README.md -------------------------------------------------------------------------------- /BlackBerry/ChildBrowser/www/childbrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/ChildBrowser/www/childbrowser.js -------------------------------------------------------------------------------- /BlackBerry/Globalization/Globalization.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/Globalization.java -------------------------------------------------------------------------------- /BlackBerry/Globalization/GlobalizationError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/GlobalizationError.java -------------------------------------------------------------------------------- /BlackBerry/Globalization/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/LICENSE -------------------------------------------------------------------------------- /BlackBerry/Globalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/README.md -------------------------------------------------------------------------------- /BlackBerry/Globalization/Resources.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/Resources.java -------------------------------------------------------------------------------- /BlackBerry/Globalization/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/Util.java -------------------------------------------------------------------------------- /BlackBerry/Globalization/globalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/globalization.js -------------------------------------------------------------------------------- /BlackBerry/Globalization/globalization.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/globalization.tests.js -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/ar.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/ar.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/be.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/be.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/bg.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/bg.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/ca.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/ca.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/cs.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/cs.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/da.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/da.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/de.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/de.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/el.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/el.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/en.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/en.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/es.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/es.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/et.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/et.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/fi.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/fi.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/fr.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/fr.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/ga.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/ga.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/gu.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/gu.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/hr.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/hr.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/hu.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/hu.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/in.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/in.js.gz -------------------------------------------------------------------------------- /BlackBerry/Globalization/resourceBundles/is.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/Globalization/resourceBundles/is.js.gz -------------------------------------------------------------------------------- /BlackBerry/NFC/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/NFC/README.md -------------------------------------------------------------------------------- /BlackBerry/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/BlackBerry/README -------------------------------------------------------------------------------- /Palm/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Palm/README -------------------------------------------------------------------------------- /Palm/SoundPlug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Palm/SoundPlug/README.md -------------------------------------------------------------------------------- /Palm/SoundPlug/SoundPlug.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Palm/SoundPlug/SoundPlug.cpp -------------------------------------------------------------------------------- /Palm/SoundPlug/build_plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Palm/SoundPlug/build_plugin.sh -------------------------------------------------------------------------------- /Palm/SoundPlug/package.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Palm/SoundPlug/package.properties -------------------------------------------------------------------------------- /Palm/SoundPlug/soundplug_plugin_appinfo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Palm/SoundPlug/soundplug_plugin_appinfo.json -------------------------------------------------------------------------------- /Qt/PowerManagement/plugins/powermanagement.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Qt/PowerManagement/plugins/powermanagement.cpp -------------------------------------------------------------------------------- /Qt/PowerManagement/plugins/powermanagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Qt/PowerManagement/plugins/powermanagement.h -------------------------------------------------------------------------------- /Qt/PowerManagement/www/js/powermanagement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/Qt/PowerManagement/www/js/powermanagement.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/README.md -------------------------------------------------------------------------------- /WindowsPhone/BarcodeScanner/deploy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/BarcodeScanner/deploy/README.md -------------------------------------------------------------------------------- /WindowsPhone/BarcodeScanner/sources/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/BarcodeScanner/sources/README.md -------------------------------------------------------------------------------- /WindowsPhone/Biblesearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/Biblesearch/README.md -------------------------------------------------------------------------------- /WindowsPhone/ChildBrowser/ChildBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/ChildBrowser/ChildBrowser.js -------------------------------------------------------------------------------- /WindowsPhone/Facebook/FBConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/Facebook/FBConnect.js -------------------------------------------------------------------------------- /WindowsPhone/Facebook/facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/Facebook/facebook.html -------------------------------------------------------------------------------- /WindowsPhone/LiveTiles/LiveTiles.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/LiveTiles/LiveTiles.cs -------------------------------------------------------------------------------- /WindowsPhone/LiveTiles/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/LiveTiles/README.md -------------------------------------------------------------------------------- /WindowsPhone/LiveTiles/liveTiles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/LiveTiles/liveTiles.js -------------------------------------------------------------------------------- /WindowsPhone/LiveTiles/liveTilesExample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/LiveTiles/liveTilesExample.html -------------------------------------------------------------------------------- /WindowsPhone/PGMapLauncher/PGMapLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/PGMapLauncher/PGMapLauncher.cs -------------------------------------------------------------------------------- /WindowsPhone/PGMapLauncher/PGMapLauncher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/PGMapLauncher/PGMapLauncher.js -------------------------------------------------------------------------------- /WindowsPhone/PGMapLauncher/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/PGMapLauncher/README.md -------------------------------------------------------------------------------- /WindowsPhone/PGSocialShare/PGSocialShare.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/PGSocialShare/PGSocialShare.cs -------------------------------------------------------------------------------- /WindowsPhone/PGSocialShare/PGSocialShare.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/PGSocialShare/PGSocialShare.js -------------------------------------------------------------------------------- /WindowsPhone/PGSocialShare/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/WindowsPhone/PGSocialShare/readme.md -------------------------------------------------------------------------------- /iOS/ActionSheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ActionSheet/README.md -------------------------------------------------------------------------------- /iOS/AdPlugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /iOS/AdPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AdPlugin/README.md -------------------------------------------------------------------------------- /iOS/AppBlade/AppBlade.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppBlade/AppBlade.js -------------------------------------------------------------------------------- /iOS/AppBlade/AppBladePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppBlade/AppBladePlugin.h -------------------------------------------------------------------------------- /iOS/AppBlade/AppBladePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppBlade/AppBladePlugin.m -------------------------------------------------------------------------------- /iOS/AppBlade/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppBlade/README.md -------------------------------------------------------------------------------- /iOS/AppiraterPlugin/AppiraterPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppiraterPlugin/AppiraterPlugin.h -------------------------------------------------------------------------------- /iOS/AppiraterPlugin/AppiraterPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppiraterPlugin/AppiraterPlugin.js -------------------------------------------------------------------------------- /iOS/AppiraterPlugin/AppiraterPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppiraterPlugin/AppiraterPlugin.m -------------------------------------------------------------------------------- /iOS/AppiraterPlugin/Classes/Appirater.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppiraterPlugin/Classes/Appirater.h -------------------------------------------------------------------------------- /iOS/AppiraterPlugin/Classes/Appirater.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppiraterPlugin/Classes/Appirater.m -------------------------------------------------------------------------------- /iOS/AppiraterPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AppiraterPlugin/README.md -------------------------------------------------------------------------------- /iOS/ApplicationPreferences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ApplicationPreferences/README.md -------------------------------------------------------------------------------- /iOS/AudioEncode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AudioEncode/README.md -------------------------------------------------------------------------------- /iOS/AudioRecord/AudioRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AudioRecord/AudioRecord.h -------------------------------------------------------------------------------- /iOS/AudioRecord/AudioRecord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AudioRecord/AudioRecord.js -------------------------------------------------------------------------------- /iOS/AudioRecord/AudioRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AudioRecord/AudioRecord.m -------------------------------------------------------------------------------- /iOS/AudioRecord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AudioRecord/README.md -------------------------------------------------------------------------------- /iOS/AugmentedReality-Wikitude/Plugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/AugmentedReality-Wikitude/Plugin/README.md -------------------------------------------------------------------------------- /iOS/Badge/Badge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Badge/Badge.h -------------------------------------------------------------------------------- /iOS/Badge/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Badge/Badge.js -------------------------------------------------------------------------------- /iOS/Badge/Badge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Badge/Badge.m -------------------------------------------------------------------------------- /iOS/Badge/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Badge/README -------------------------------------------------------------------------------- /iOS/BarcodeScanner/CDVBarcodeScanner.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/CDVBarcodeScanner.mm -------------------------------------------------------------------------------- /iOS/BarcodeScanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/README.md -------------------------------------------------------------------------------- /iOS/BarcodeScanner/barcodescanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/barcodescanner.js -------------------------------------------------------------------------------- /iOS/BarcodeScanner/build/.gitignore: -------------------------------------------------------------------------------- 1 | zxing 2 | tmp -------------------------------------------------------------------------------- /iOS/BarcodeScanner/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/build/Makefile -------------------------------------------------------------------------------- /iOS/BarcodeScanner/build/onefile-zxing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/build/onefile-zxing.py -------------------------------------------------------------------------------- /iOS/BarcodeScanner/scannerOverlay.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/scannerOverlay.xib -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/test/Makefile -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/test/README.md -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/.gitignore: -------------------------------------------------------------------------------- 1 | *.json.js -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/code_128-1.txt: -------------------------------------------------------------------------------- 1 | 123456 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/code_39-1.txt: -------------------------------------------------------------------------------- 1 | TEST-SHEET -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/data_matrix-1.txt: -------------------------------------------------------------------------------- 1 | http://google.com/m -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/ean_13-1.txt: -------------------------------------------------------------------------------- 1 | 9780764544200 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/ean_8-1.txt: -------------------------------------------------------------------------------- 1 | 48512343 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/qr_code-medium.txt: -------------------------------------------------------------------------------- 1 | MECARD:N:Google 411,;TEL:18665881077;; -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/qr_code-small.txt: -------------------------------------------------------------------------------- 1 | Morden -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/upc_a-1.txt: -------------------------------------------------------------------------------- 1 | 456314319671 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/upc_a-2.txt: -------------------------------------------------------------------------------- 1 | 752919460009 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/upc_e-1.txt: -------------------------------------------------------------------------------- 1 | 00123457 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/images/upc_e-2.txt: -------------------------------------------------------------------------------- 1 | 05096893 -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/desktop-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/test/desktop-app/index.html -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/phonegap-app/.gitignore: -------------------------------------------------------------------------------- 1 | *.json.js -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/phonegap-app/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/test/phonegap-app/index.html -------------------------------------------------------------------------------- /iOS/BarcodeScanner/test/rebuild-tests-json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/test/rebuild-tests-json.py -------------------------------------------------------------------------------- /iOS/BarcodeScanner/zxing-all-in-one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/zxing-all-in-one.cpp -------------------------------------------------------------------------------- /iOS/BarcodeScanner/zxing-all-in-one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/BarcodeScanner/zxing-all-in-one.h -------------------------------------------------------------------------------- /iOS/Biblesearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Biblesearch/README.md -------------------------------------------------------------------------------- /iOS/CalendarPlugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/CalendarPlugin/README -------------------------------------------------------------------------------- /iOS/CalendarPlugin/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/CalendarPlugin/calendar.js -------------------------------------------------------------------------------- /iOS/CalendarPlugin/calendarPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/CalendarPlugin/calendarPlugin.h -------------------------------------------------------------------------------- /iOS/CalendarPlugin/calendarPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/CalendarPlugin/calendarPlugin.m -------------------------------------------------------------------------------- /iOS/Canvas2ImagePlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Canvas2ImagePlugin/README.md -------------------------------------------------------------------------------- /iOS/ChildBrowser/ChildBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/ChildBrowser.js -------------------------------------------------------------------------------- /iOS/ChildBrowser/ChildBrowserCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/ChildBrowserCommand.h -------------------------------------------------------------------------------- /iOS/ChildBrowser/ChildBrowserCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/ChildBrowserCommand.m -------------------------------------------------------------------------------- /iOS/ChildBrowser/ChildBrowserViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/ChildBrowserViewController.h -------------------------------------------------------------------------------- /iOS/ChildBrowser/ChildBrowserViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/ChildBrowserViewController.m -------------------------------------------------------------------------------- /iOS/ChildBrowser/ChildBrowserViewController.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/ChildBrowserViewController.xib -------------------------------------------------------------------------------- /iOS/ChildBrowser/Cordova.plist.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/Cordova.plist.png -------------------------------------------------------------------------------- /iOS/ChildBrowser/FBConnectExample/FBConnect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/FBConnectExample/FBConnect.js -------------------------------------------------------------------------------- /iOS/ChildBrowser/FBConnectExample/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/FBConnectExample/README.txt -------------------------------------------------------------------------------- /iOS/ChildBrowser/FBConnectExample/facebook.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/FBConnectExample/facebook.html -------------------------------------------------------------------------------- /iOS/ChildBrowser/FBConnectExample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/FBConnectExample/index.html -------------------------------------------------------------------------------- /iOS/ChildBrowser/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/README.md -------------------------------------------------------------------------------- /iOS/ChildBrowser/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ChildBrowser/index.html -------------------------------------------------------------------------------- /iOS/DatePicker/DatePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DatePicker/DatePicker.h -------------------------------------------------------------------------------- /iOS/DatePicker/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DatePicker/DatePicker.js -------------------------------------------------------------------------------- /iOS/DatePicker/DatePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DatePicker/DatePicker.m -------------------------------------------------------------------------------- /iOS/DeviceDetails/DeviceDetails.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DeviceDetails/DeviceDetails.h -------------------------------------------------------------------------------- /iOS/DeviceDetails/DeviceDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DeviceDetails/DeviceDetails.js -------------------------------------------------------------------------------- /iOS/DeviceDetails/DeviceDetails.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DeviceDetails/DeviceDetails.m -------------------------------------------------------------------------------- /iOS/DeviceDetails/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/DeviceDetails/README.md -------------------------------------------------------------------------------- /iOS/Diagnostic/Diagnostic.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/Diagnostic.h -------------------------------------------------------------------------------- /iOS/Diagnostic/Diagnostic.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/Diagnostic.m -------------------------------------------------------------------------------- /iOS/Diagnostic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/README.md -------------------------------------------------------------------------------- /iOS/Diagnostic/diagnostic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/diagnostic.js -------------------------------------------------------------------------------- /iOS/Diagnostic/example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/example/www/index.html -------------------------------------------------------------------------------- /iOS/Diagnostic/example/www/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/example/www/init.js -------------------------------------------------------------------------------- /iOS/Diagnostic/example/www/status.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Diagnostic/example/www/status.html -------------------------------------------------------------------------------- /iOS/EmailComposer/EmailComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/EmailComposer/EmailComposer.h -------------------------------------------------------------------------------- /iOS/EmailComposer/EmailComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/EmailComposer/EmailComposer.js -------------------------------------------------------------------------------- /iOS/EmailComposer/EmailComposer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/EmailComposer/EmailComposer.m -------------------------------------------------------------------------------- /iOS/EmailComposer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/EmailComposer/index.html -------------------------------------------------------------------------------- /iOS/EmailComposer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/EmailComposer/readme.md -------------------------------------------------------------------------------- /iOS/EmailComposerWithAttachments/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/EmailComposerWithAttachments/readme.md -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/README -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/pdf/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/pdf/README -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/pdf/drm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/pdf/drm.pdf -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/pdf/no_drm.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/pdf/no_drm.pdf -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/www/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/www/css/index.css -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/www/img/cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/www/img/cordova.png -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/www/index.html -------------------------------------------------------------------------------- /iOS/ExternalFileUtil/sample/www/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalFileUtil/sample/www/js/index.js -------------------------------------------------------------------------------- /iOS/ExternalScreen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalScreen/README -------------------------------------------------------------------------------- /iOS/ExternalScreen/plugin/ExternalScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalScreen/plugin/ExternalScreen.js -------------------------------------------------------------------------------- /iOS/ExternalScreen/plugin/PGExternalScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalScreen/plugin/PGExternalScreen.h -------------------------------------------------------------------------------- /iOS/ExternalScreen/plugin/PGExternalScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExternalScreen/plugin/PGExternalScreen.m -------------------------------------------------------------------------------- /iOS/ExtractZipFile/ExtractZipFilePlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/ExtractZipFilePlugin.h -------------------------------------------------------------------------------- /iOS/ExtractZipFile/ExtractZipFilePlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/ExtractZipFilePlugin.m -------------------------------------------------------------------------------- /iOS/ExtractZipFile/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/README.md -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/LICENSE -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/Readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/Readme.markdown -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/SSZipArchive.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/SSZipArchive.h -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/SSZipArchive.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/SSZipArchive.m -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/crypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/crypt.h -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/ioapi.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/ioapi.c -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/ioapi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/ioapi.h -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/unzip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/unzip.c -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/unzip.h -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/zip.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/zip.c -------------------------------------------------------------------------------- /iOS/ExtractZipFile/SSZipArchive/minizip/zip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/SSZipArchive/minizip/zip.h -------------------------------------------------------------------------------- /iOS/ExtractZipFile/ZipPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ExtractZipFile/ZipPlugin.js -------------------------------------------------------------------------------- /iOS/FacebookConnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/FacebookConnect/README.md -------------------------------------------------------------------------------- /iOS/FileUploader/FileUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/FileUploader/FileUploader.h -------------------------------------------------------------------------------- /iOS/FileUploader/FileUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/FileUploader/FileUploader.m -------------------------------------------------------------------------------- /iOS/FileUploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/FileUploader/README.md -------------------------------------------------------------------------------- /iOS/FileUploader/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/FileUploader/fileuploader.js -------------------------------------------------------------------------------- /iOS/Geofencing/DGGeofencing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Geofencing/DGGeofencing.js -------------------------------------------------------------------------------- /iOS/Geofencing/Geofencing/DGGeofencing.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Geofencing/Geofencing/DGGeofencing.h -------------------------------------------------------------------------------- /iOS/Geofencing/Geofencing/DGGeofencing.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Geofencing/Geofencing/DGGeofencing.m -------------------------------------------------------------------------------- /iOS/Geofencing/Geofencing/DGGeofencingHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Geofencing/Geofencing/DGGeofencingHelper.h -------------------------------------------------------------------------------- /iOS/Geofencing/Geofencing/DGGeofencingHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Geofencing/Geofencing/DGGeofencingHelper.m -------------------------------------------------------------------------------- /iOS/Geofencing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Geofencing/README.md -------------------------------------------------------------------------------- /iOS/Globalization/Globalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Globalization/Globalization.h -------------------------------------------------------------------------------- /iOS/Globalization/Globalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Globalization/Globalization.js -------------------------------------------------------------------------------- /iOS/Globalization/Globalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Globalization/Globalization.m -------------------------------------------------------------------------------- /iOS/Globalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Globalization/README.md -------------------------------------------------------------------------------- /iOS/Globalization/globalization.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Globalization/globalization.html -------------------------------------------------------------------------------- /iOS/Globalization/globalization.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Globalization/globalization.tests.js -------------------------------------------------------------------------------- /iOS/GoogleAnalytics/GoogSDK/GANTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/GoogleAnalytics/GoogSDK/GANTracker.h -------------------------------------------------------------------------------- /iOS/GoogleAnalytics/GoogleAnalyticsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/GoogleAnalytics/GoogleAnalyticsPlugin.h -------------------------------------------------------------------------------- /iOS/GoogleAnalytics/GoogleAnalyticsPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/GoogleAnalytics/GoogleAnalyticsPlugin.js -------------------------------------------------------------------------------- /iOS/GoogleAnalytics/GoogleAnalyticsPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/GoogleAnalytics/GoogleAnalyticsPlugin.m -------------------------------------------------------------------------------- /iOS/GoogleAnalytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/GoogleAnalytics/README.md -------------------------------------------------------------------------------- /iOS/InAppPurchaseManager/InAppPurchaseManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/InAppPurchaseManager/InAppPurchaseManager.h -------------------------------------------------------------------------------- /iOS/InAppPurchaseManager/InAppPurchaseManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/InAppPurchaseManager/InAppPurchaseManager.m -------------------------------------------------------------------------------- /iOS/InAppPurchaseManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/InAppPurchaseManager/README.md -------------------------------------------------------------------------------- /iOS/KeyboardToolbarRemover/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/KeyboardToolbarRemover/README.md -------------------------------------------------------------------------------- /iOS/Keychain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Keychain/README.md -------------------------------------------------------------------------------- /iOS/LocalNotifications/example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LocalNotifications/example/css/style.css -------------------------------------------------------------------------------- /iOS/LocalNotifications/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LocalNotifications/example/index.html -------------------------------------------------------------------------------- /iOS/LocalNotifications/example/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LocalNotifications/example/js/init.js -------------------------------------------------------------------------------- /iOS/LocalNotifications/project/Cordova LocalNotifications/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iOS/LocalNotifications/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LocalNotifications/readme.md -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/README.txt -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/examples/basic/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/examples/basic/index.html -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/src/LowLatencyAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/src/LowLatencyAudio.h -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/src/LowLatencyAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/src/LowLatencyAudio.js -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/src/LowLatencyAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/src/LowLatencyAudio.m -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/src/LowLatencyAudioAsset.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/src/LowLatencyAudioAsset.h -------------------------------------------------------------------------------- /iOS/LowLatencyAudio/src/LowLatencyAudioAsset.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/LowLatencyAudio/src/LowLatencyAudioAsset.m -------------------------------------------------------------------------------- /iOS/MapKit/AsyncImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/AsyncImageView.h -------------------------------------------------------------------------------- /iOS/MapKit/AsyncImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/AsyncImageView.m -------------------------------------------------------------------------------- /iOS/MapKit/CDVAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/CDVAnnotation.h -------------------------------------------------------------------------------- /iOS/MapKit/CDVAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/CDVAnnotation.m -------------------------------------------------------------------------------- /iOS/MapKit/MapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/MapKit.h -------------------------------------------------------------------------------- /iOS/MapKit/MapKit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/MapKit.js -------------------------------------------------------------------------------- /iOS/MapKit/MapKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/MapKit.m -------------------------------------------------------------------------------- /iOS/MapKit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/README.md -------------------------------------------------------------------------------- /iOS/MapKit/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/icon.png -------------------------------------------------------------------------------- /iOS/MapKit/map-close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MapKit/map-close-button.png -------------------------------------------------------------------------------- /iOS/MessageBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/MessageBox/README.md -------------------------------------------------------------------------------- /iOS/NativeControls/NativeControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NativeControls/NativeControls.h -------------------------------------------------------------------------------- /iOS/NativeControls/NativeControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NativeControls/NativeControls.js -------------------------------------------------------------------------------- /iOS/NativeControls/NativeControls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NativeControls/NativeControls.m -------------------------------------------------------------------------------- /iOS/NativeControls/index.1.6.0.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NativeControls/index.1.6.0.html -------------------------------------------------------------------------------- /iOS/NativeControls/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NativeControls/index.html -------------------------------------------------------------------------------- /iOS/NavigationBar/REPO MOVED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NavigationBar/REPO MOVED.txt -------------------------------------------------------------------------------- /iOS/NotificationEx/LoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/LoadingView.h -------------------------------------------------------------------------------- /iOS/NotificationEx/LoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/LoadingView.m -------------------------------------------------------------------------------- /iOS/NotificationEx/NotificationEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/NotificationEx.h -------------------------------------------------------------------------------- /iOS/NotificationEx/NotificationEx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/NotificationEx.m -------------------------------------------------------------------------------- /iOS/NotificationEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/README.md -------------------------------------------------------------------------------- /iOS/NotificationEx/UIColor-Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/UIColor-Expanded.h -------------------------------------------------------------------------------- /iOS/NotificationEx/UIColor-Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/UIColor-Expanded.m -------------------------------------------------------------------------------- /iOS/NotificationEx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/index.html -------------------------------------------------------------------------------- /iOS/NotificationEx/notificationex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/NotificationEx/notificationex.js -------------------------------------------------------------------------------- /iOS/OCRPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/OCRPlugin/README.md -------------------------------------------------------------------------------- /iOS/PDFViewer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PDFViewer/README.md -------------------------------------------------------------------------------- /iOS/PayPalPlugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PayPalPlugin/.gitignore -------------------------------------------------------------------------------- /iOS/PayPalPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PayPalPlugin/README.md -------------------------------------------------------------------------------- /iOS/PickerView/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PickerView/README.md -------------------------------------------------------------------------------- /iOS/PowerManagement/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PowerManagement/LICENSE -------------------------------------------------------------------------------- /iOS/PowerManagement/PowerManagement.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PowerManagement/PowerManagement.h -------------------------------------------------------------------------------- /iOS/PowerManagement/PowerManagement.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PowerManagement/PowerManagement.m -------------------------------------------------------------------------------- /iOS/PowerManagement/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PowerManagement/README.md -------------------------------------------------------------------------------- /iOS/PowerManagement/powermanagement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PowerManagement/powermanagement.js -------------------------------------------------------------------------------- /iOS/PrintPlugin/PrintPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PrintPlugin/PrintPlugin.h -------------------------------------------------------------------------------- /iOS/PrintPlugin/PrintPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PrintPlugin/PrintPlugin.js -------------------------------------------------------------------------------- /iOS/PrintPlugin/PrintPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PrintPlugin/PrintPlugin.m -------------------------------------------------------------------------------- /iOS/PrintPlugin/READEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PrintPlugin/READEME.md -------------------------------------------------------------------------------- /iOS/PrintPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PrintPlugin/index.html -------------------------------------------------------------------------------- /iOS/ProgressHud/ProgressHud.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ProgressHud/ProgressHud.h -------------------------------------------------------------------------------- /iOS/ProgressHud/ProgressHud.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ProgressHud/ProgressHud.js -------------------------------------------------------------------------------- /iOS/ProgressHud/ProgressHud.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ProgressHud/ProgressHud.m -------------------------------------------------------------------------------- /iOS/ProgressHud/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ProgressHud/README.md -------------------------------------------------------------------------------- /iOS/ProgressHud/libs/MBProgressHUD.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ProgressHud/libs/MBProgressHUD.h -------------------------------------------------------------------------------- /iOS/ProgressHud/libs/MBProgressHUD.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ProgressHud/libs/MBProgressHUD.m -------------------------------------------------------------------------------- /iOS/PushNotification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/PushNotification/README.md -------------------------------------------------------------------------------- /iOS/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/README.md -------------------------------------------------------------------------------- /iOS/SMSComposer/AddMessageUIframework.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/AddMessageUIframework.PNG -------------------------------------------------------------------------------- /iOS/SMSComposer/AddSMSComposerKey.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/AddSMSComposerKey.PNG -------------------------------------------------------------------------------- /iOS/SMSComposer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/README.md -------------------------------------------------------------------------------- /iOS/SMSComposer/SMSComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/SMSComposer.h -------------------------------------------------------------------------------- /iOS/SMSComposer/SMSComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/SMSComposer.js -------------------------------------------------------------------------------- /iOS/SMSComposer/SMSComposer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/SMSComposer.m -------------------------------------------------------------------------------- /iOS/SMSComposer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SMSComposer/index.html -------------------------------------------------------------------------------- /iOS/ScreenOrientation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ScreenOrientation/README.md -------------------------------------------------------------------------------- /iOS/ScreenOrientation/ScreenOrientation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ScreenOrientation/ScreenOrientation.h -------------------------------------------------------------------------------- /iOS/ScreenOrientation/ScreenOrientation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ScreenOrientation/ScreenOrientation.js -------------------------------------------------------------------------------- /iOS/ScreenOrientation/ScreenOrientation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ScreenOrientation/ScreenOrientation.m -------------------------------------------------------------------------------- /iOS/Screenshot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Screenshot/README.md -------------------------------------------------------------------------------- /iOS/Screenshot/Screenshot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Screenshot/Screenshot.h -------------------------------------------------------------------------------- /iOS/Screenshot/Screenshot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Screenshot/Screenshot.js -------------------------------------------------------------------------------- /iOS/Screenshot/Screenshot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Screenshot/Screenshot.m -------------------------------------------------------------------------------- /iOS/SecureDeviceIdentifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/SecureDeviceIdentifier/README.md -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/README.md -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/SHKSharer+Phonegap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/SHKSharer+Phonegap.h -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/SHKSharer+Phonegap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/SHKSharer+Phonegap.m -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/ShareKitPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/ShareKitPlugin.h -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/ShareKitPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/ShareKitPlugin.js -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/ShareKitPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/ShareKitPlugin.m -------------------------------------------------------------------------------- /iOS/ShareKitPlugin/example-config/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/ShareKitPlugin/example-config/AppDelegate.m -------------------------------------------------------------------------------- /iOS/StatusBarNotifier/FDStatusBarNotifierView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/StatusBarNotifier/FDStatusBarNotifierView.h -------------------------------------------------------------------------------- /iOS/StatusBarNotifier/FDStatusBarNotifierView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/StatusBarNotifier/FDStatusBarNotifierView.m -------------------------------------------------------------------------------- /iOS/StatusBarNotifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/StatusBarNotifier/README.md -------------------------------------------------------------------------------- /iOS/StatusBarNotifier/StatusBarNotifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/StatusBarNotifier/StatusBarNotifier.h -------------------------------------------------------------------------------- /iOS/StatusBarNotifier/StatusBarNotifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/StatusBarNotifier/StatusBarNotifier.js -------------------------------------------------------------------------------- /iOS/StatusBarNotifier/StatusBarNotifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/StatusBarNotifier/StatusBarNotifier.m -------------------------------------------------------------------------------- /iOS/TabBar/REPO MOVED.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/TabBar/REPO MOVED.txt -------------------------------------------------------------------------------- /iOS/Testflight/CDVTestFlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Testflight/CDVTestFlight.h -------------------------------------------------------------------------------- /iOS/Testflight/CDVTestFlight.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Testflight/CDVTestFlight.m -------------------------------------------------------------------------------- /iOS/Testflight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Testflight/README.md -------------------------------------------------------------------------------- /iOS/Testflight/TestFlight.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Testflight/TestFlight.js -------------------------------------------------------------------------------- /iOS/Twitter/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/LICENSE.md -------------------------------------------------------------------------------- /iOS/Twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/README.md -------------------------------------------------------------------------------- /iOS/Twitter/TwitterPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/TwitterPlugin.h -------------------------------------------------------------------------------- /iOS/Twitter/TwitterPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/TwitterPlugin.m -------------------------------------------------------------------------------- /iOS/Twitter/example/www/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www/demo.js -------------------------------------------------------------------------------- /iOS/Twitter/example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www/index.html -------------------------------------------------------------------------------- /iOS/Twitter/example/www/ninja-lolcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www/ninja-lolcat.gif -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/TwitterPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/TwitterPlugin.js -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/config.xml -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/cordova-2.0.0.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/cordova-2.0.0.js -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/css/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/css/index.css -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/demo.js -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/img/cordova.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/img/cordova.png -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/index.html -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/js/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/js/index.js -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/ninja-lolcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/ninja-lolcat.gif -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/spec.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/spec.html -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/spec/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/spec/helper.js -------------------------------------------------------------------------------- /iOS/Twitter/example/www2.0/spec/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/example/www2.0/spec/index.js -------------------------------------------------------------------------------- /iOS/Twitter/js/TwitterPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/Twitter/js/TwitterPlugin.js -------------------------------------------------------------------------------- /iOS/UAPushNotifications/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/UAPushNotifications/.gitignore -------------------------------------------------------------------------------- /iOS/UAPushNotifications/README.md: -------------------------------------------------------------------------------- 1 | Submit UAPushNotifications plugin here. -------------------------------------------------------------------------------- /iOS/UniqueIdentifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/UniqueIdentifier/README.md -------------------------------------------------------------------------------- /iOS/UniqueIdentifier/UniqueIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/UniqueIdentifier/UniqueIdentifier.h -------------------------------------------------------------------------------- /iOS/UniqueIdentifier/UniqueIdentifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/UniqueIdentifier/UniqueIdentifier.js -------------------------------------------------------------------------------- /iOS/UniqueIdentifier/UniqueIdentifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/UniqueIdentifier/UniqueIdentifier.m -------------------------------------------------------------------------------- /iOS/VolumeSlider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/VolumeSlider/README.md -------------------------------------------------------------------------------- /iOS/WaitingDialog/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WaitingDialog/README.md -------------------------------------------------------------------------------- /iOS/WaitingDialog/WaitingDialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WaitingDialog/WaitingDialog.h -------------------------------------------------------------------------------- /iOS/WaitingDialog/WaitingDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WaitingDialog/WaitingDialog.js -------------------------------------------------------------------------------- /iOS/WaitingDialog/WaitingDialog.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WaitingDialog/WaitingDialog.m -------------------------------------------------------------------------------- /iOS/WebInspector/CDVWebInspector.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WebInspector/CDVWebInspector.m -------------------------------------------------------------------------------- /iOS/WebInspector/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WebInspector/LICENSE -------------------------------------------------------------------------------- /iOS/WebInspector/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WebInspector/README.md -------------------------------------------------------------------------------- /iOS/WebInspector/cordova-WebInspector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/WebInspector/cordova-WebInspector.js -------------------------------------------------------------------------------- /iOS/callvenderapp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/callvenderapp/README.md -------------------------------------------------------------------------------- /iOS/callvenderapp/callvenderapp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/callvenderapp/callvenderapp.h -------------------------------------------------------------------------------- /iOS/callvenderapp/callvenderapp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/callvenderapp/callvenderapp.js -------------------------------------------------------------------------------- /iOS/callvenderapp/callvenderapp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/callvenderapp/callvenderapp.m -------------------------------------------------------------------------------- /iOS/callvenderapp/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/callvenderapp/example.html -------------------------------------------------------------------------------- /iOS/card.io/CardIOPGPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/card.io/CardIOPGPlugin.h -------------------------------------------------------------------------------- /iOS/card.io/CardIOPGPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/card.io/CardIOPGPlugin.js -------------------------------------------------------------------------------- /iOS/card.io/CardIOPGPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/card.io/CardIOPGPlugin.m -------------------------------------------------------------------------------- /iOS/card.io/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/card.io/readme.md -------------------------------------------------------------------------------- /iOS/iCloudKV/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/iCloudKV/README.md -------------------------------------------------------------------------------- /iOS/iCloudKV/iCloudKV.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/iCloudKV/iCloudKV.h -------------------------------------------------------------------------------- /iOS/iCloudKV/iCloudKV.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/iCloudKV/iCloudKV.js -------------------------------------------------------------------------------- /iOS/iCloudKV/iCloudKV.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iOS/iCloudKV/iCloudKV.m -------------------------------------------------------------------------------- /iPhone/ActionSheet/ActionSheet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ActionSheet/ActionSheet.h -------------------------------------------------------------------------------- /iPhone/ActionSheet/ActionSheet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ActionSheet/ActionSheet.js -------------------------------------------------------------------------------- /iPhone/ActionSheet/ActionSheet.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ActionSheet/ActionSheet.m -------------------------------------------------------------------------------- /iPhone/ActionSheet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ActionSheet/README.md -------------------------------------------------------------------------------- /iPhone/AdPlugin/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /iPhone/AdPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AdPlugin/README.md -------------------------------------------------------------------------------- /iPhone/AdPlugin/SAiOSAdPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AdPlugin/SAiOSAdPlugin.h -------------------------------------------------------------------------------- /iPhone/AdPlugin/SAiOSAdPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AdPlugin/SAiOSAdPlugin.js -------------------------------------------------------------------------------- /iPhone/AdPlugin/SAiOSAdPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AdPlugin/SAiOSAdPlugin.m -------------------------------------------------------------------------------- /iPhone/AdPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AdPlugin/index.html -------------------------------------------------------------------------------- /iPhone/ApplicationPreferences/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ApplicationPreferences/README.md -------------------------------------------------------------------------------- /iPhone/AudioEncode/AudioEncode.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioEncode/AudioEncode.h -------------------------------------------------------------------------------- /iPhone/AudioEncode/AudioEncode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioEncode/AudioEncode.js -------------------------------------------------------------------------------- /iPhone/AudioEncode/AudioEncode.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioEncode/AudioEncode.m -------------------------------------------------------------------------------- /iPhone/AudioEncode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioEncode/README.md -------------------------------------------------------------------------------- /iPhone/AudioRecord/AudioRecord.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioRecord/AudioRecord.h -------------------------------------------------------------------------------- /iPhone/AudioRecord/AudioRecord.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioRecord/AudioRecord.js -------------------------------------------------------------------------------- /iPhone/AudioRecord/AudioRecord.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioRecord/AudioRecord.m -------------------------------------------------------------------------------- /iPhone/AudioRecord/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/AudioRecord/README.md -------------------------------------------------------------------------------- /iPhone/Badge/Badge.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Badge/Badge.h -------------------------------------------------------------------------------- /iPhone/Badge/Badge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Badge/Badge.js -------------------------------------------------------------------------------- /iPhone/Badge/Badge.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Badge/Badge.m -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/PGBarcodeScanner.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/PGBarcodeScanner.mm -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/README.md -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/barcodescanner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/barcodescanner.js -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/build/.gitignore: -------------------------------------------------------------------------------- 1 | zxing 2 | tmp -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/build/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/build/Makefile -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/build/onefile-zxing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/build/onefile-zxing.py -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/scannerOverlay.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/scannerOverlay.xib -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/test/Makefile -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/test/README.md -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/.gitignore: -------------------------------------------------------------------------------- 1 | *.json.js -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/code_128-1.txt: -------------------------------------------------------------------------------- 1 | 123456 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/code_39-1.txt: -------------------------------------------------------------------------------- 1 | TEST-SHEET -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/data_matrix-1.txt: -------------------------------------------------------------------------------- 1 | http://google.com/m -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/ean_13-1.txt: -------------------------------------------------------------------------------- 1 | 9780764544200 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/ean_8-1.txt: -------------------------------------------------------------------------------- 1 | 48512343 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/qr_code-medium.txt: -------------------------------------------------------------------------------- 1 | MECARD:N:Google 411,;TEL:18665881077;; -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/qr_code-small.txt: -------------------------------------------------------------------------------- 1 | Morden -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/upc_a-1.txt: -------------------------------------------------------------------------------- 1 | 456314319671 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/upc_a-2.txt: -------------------------------------------------------------------------------- 1 | 752919460009 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/upc_e-1.txt: -------------------------------------------------------------------------------- 1 | 00123457 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/desktop-app/images/upc_e-2.txt: -------------------------------------------------------------------------------- 1 | 05096893 -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/test/phonegap-app/.gitignore: -------------------------------------------------------------------------------- 1 | *.json.js -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/zxing-all-in-one.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/zxing-all-in-one.cpp -------------------------------------------------------------------------------- /iPhone/BarcodeScanner/zxing-all-in-one.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BarcodeScanner/zxing-all-in-one.h -------------------------------------------------------------------------------- /iPhone/BundleFileReader/BundleFileReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BundleFileReader/BundleFileReader.h -------------------------------------------------------------------------------- /iPhone/BundleFileReader/BundleFileReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BundleFileReader/BundleFileReader.m -------------------------------------------------------------------------------- /iPhone/BundleFileReader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BundleFileReader/README.md -------------------------------------------------------------------------------- /iPhone/BundleFileReader/bundle_file_reader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/BundleFileReader/bundle_file_reader.js -------------------------------------------------------------------------------- /iPhone/CalendarPlugin/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/CalendarPlugin/README -------------------------------------------------------------------------------- /iPhone/CalendarPlugin/calendar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/CalendarPlugin/calendar.js -------------------------------------------------------------------------------- /iPhone/CalendarPlugin/calendarPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/CalendarPlugin/calendarPlugin.h -------------------------------------------------------------------------------- /iPhone/CalendarPlugin/calendarPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/CalendarPlugin/calendarPlugin.m -------------------------------------------------------------------------------- /iPhone/ChildBrowser/ChildBrowser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ChildBrowser/ChildBrowser.js -------------------------------------------------------------------------------- /iPhone/ChildBrowser/ChildBrowserCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ChildBrowser/ChildBrowserCommand.h -------------------------------------------------------------------------------- /iPhone/ChildBrowser/ChildBrowserCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ChildBrowser/ChildBrowserCommand.m -------------------------------------------------------------------------------- /iPhone/ChildBrowser/FBConnectExample/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ChildBrowser/FBConnectExample/README.txt -------------------------------------------------------------------------------- /iPhone/ChildBrowser/FBConnectExample/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ChildBrowser/FBConnectExample/index.html -------------------------------------------------------------------------------- /iPhone/ChildBrowser/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ChildBrowser/README.txt -------------------------------------------------------------------------------- /iPhone/ClipboardPlugin/ClipboardPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ClipboardPlugin/ClipboardPlugin.h -------------------------------------------------------------------------------- /iPhone/ClipboardPlugin/ClipboardPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ClipboardPlugin/ClipboardPlugin.m -------------------------------------------------------------------------------- /iPhone/ClipboardPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ClipboardPlugin/README.md -------------------------------------------------------------------------------- /iPhone/ClipboardPlugin/clipboardPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ClipboardPlugin/clipboardPlugin.js -------------------------------------------------------------------------------- /iPhone/DatePicker/DatePicker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/DatePicker.h -------------------------------------------------------------------------------- /iPhone/DatePicker/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/DatePicker.js -------------------------------------------------------------------------------- /iPhone/DatePicker/DatePicker.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/DatePicker.m -------------------------------------------------------------------------------- /iPhone/DatePicker/example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/.gitignore -------------------------------------------------------------------------------- /iPhone/DatePicker/example/Default-Landscape.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/Default-Landscape.png -------------------------------------------------------------------------------- /iPhone/DatePicker/example/Default-Portrait.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/Default-Portrait.png -------------------------------------------------------------------------------- /iPhone/DatePicker/example/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/Default.png -------------------------------------------------------------------------------- /iPhone/DatePicker/example/PhoneGap.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/PhoneGap.plist -------------------------------------------------------------------------------- /iPhone/DatePicker/example/Plugins/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/Plugins/README -------------------------------------------------------------------------------- /iPhone/DatePicker/example/example-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/example-Info.plist -------------------------------------------------------------------------------- /iPhone/DatePicker/example/example_Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/example_Prefix.pch -------------------------------------------------------------------------------- /iPhone/DatePicker/example/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/icon-72.png -------------------------------------------------------------------------------- /iPhone/DatePicker/example/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/icon.png -------------------------------------------------------------------------------- /iPhone/DatePicker/example/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/icon@2x.png -------------------------------------------------------------------------------- /iPhone/DatePicker/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/main.m -------------------------------------------------------------------------------- /iPhone/DatePicker/example/www/DatePicker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/www/DatePicker.js -------------------------------------------------------------------------------- /iPhone/DatePicker/example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/www/index.html -------------------------------------------------------------------------------- /iPhone/DatePicker/example/www/phonegap.0.9.4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/DatePicker/example/www/phonegap.0.9.4.js -------------------------------------------------------------------------------- /iPhone/EmailComposer/EmailComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/EmailComposer/EmailComposer.h -------------------------------------------------------------------------------- /iPhone/EmailComposer/EmailComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/EmailComposer/EmailComposer.js -------------------------------------------------------------------------------- /iPhone/EmailComposer/EmailComposer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/EmailComposer/EmailComposer.m -------------------------------------------------------------------------------- /iPhone/EmailComposer/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/EmailComposer/readme.md -------------------------------------------------------------------------------- /iPhone/ExternalScreen/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ExternalScreen/README -------------------------------------------------------------------------------- /iPhone/ExternalScreen/plugin/ExternalScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ExternalScreen/plugin/ExternalScreen.js -------------------------------------------------------------------------------- /iPhone/ExternalScreen/plugin/PGExternalScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ExternalScreen/plugin/PGExternalScreen.h -------------------------------------------------------------------------------- /iPhone/ExternalScreen/plugin/PGExternalScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ExternalScreen/plugin/PGExternalScreen.m -------------------------------------------------------------------------------- /iPhone/FileUploader/FileUploader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/FileUploader/FileUploader.h -------------------------------------------------------------------------------- /iPhone/FileUploader/FileUploader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/FileUploader/FileUploader.m -------------------------------------------------------------------------------- /iPhone/FileUploader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/FileUploader/README.md -------------------------------------------------------------------------------- /iPhone/FileUploader/fileuploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/FileUploader/fileuploader.js -------------------------------------------------------------------------------- /iPhone/GapSocket/GapSocket.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GapSocket/GapSocket.js -------------------------------------------------------------------------------- /iPhone/GapSocket/GapSocketCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GapSocket/GapSocketCommand.h -------------------------------------------------------------------------------- /iPhone/GapSocket/GapSocketCommand.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GapSocket/GapSocketCommand.m -------------------------------------------------------------------------------- /iPhone/GapSocket/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GapSocket/Readme.txt -------------------------------------------------------------------------------- /iPhone/Globalization/Globalization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Globalization/Globalization.h -------------------------------------------------------------------------------- /iPhone/Globalization/Globalization.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Globalization/Globalization.js -------------------------------------------------------------------------------- /iPhone/Globalization/Globalization.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Globalization/Globalization.m -------------------------------------------------------------------------------- /iPhone/Globalization/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Globalization/README.md -------------------------------------------------------------------------------- /iPhone/Globalization/globalization.tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Globalization/globalization.tests.js -------------------------------------------------------------------------------- /iPhone/Globalization/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Globalization/index.html -------------------------------------------------------------------------------- /iPhone/GoogleAnalytics/GoogSDK/GANTracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GoogleAnalytics/GoogSDK/GANTracker.h -------------------------------------------------------------------------------- /iPhone/GoogleAnalytics/GoogleAnalyticsPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GoogleAnalytics/GoogleAnalyticsPlugin.h -------------------------------------------------------------------------------- /iPhone/GoogleAnalytics/GoogleAnalyticsPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GoogleAnalytics/GoogleAnalyticsPlugin.js -------------------------------------------------------------------------------- /iPhone/GoogleAnalytics/GoogleAnalyticsPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GoogleAnalytics/GoogleAnalyticsPlugin.m -------------------------------------------------------------------------------- /iPhone/GoogleAnalytics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/GoogleAnalytics/README.md -------------------------------------------------------------------------------- /iPhone/HockeyApp/HockeyApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/HockeyApp.h -------------------------------------------------------------------------------- /iPhone/HockeyApp/HockeyApp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/HockeyApp.js -------------------------------------------------------------------------------- /iPhone/HockeyApp/HockeyApp.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/HockeyApp.m -------------------------------------------------------------------------------- /iPhone/HockeyApp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/README -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | build/ 3 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/README: -------------------------------------------------------------------------------- 1 | Uses Jquery Mobile 2 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/jqmHockeyApp/HockeyApp/QuincyKit/CrashReporter.framework/CrashReporter: -------------------------------------------------------------------------------- 1 | Versions/Current/CrashReporter -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/jqmHockeyApp/HockeyApp/QuincyKit/CrashReporter.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/jqmHockeyApp/HockeyApp/QuincyKit/CrashReporter.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/jqmHockeyApp/HockeyApp/QuincyKit/CrashReporter.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/jqmHockeyApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/www/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/jqmHockeyApp/www/index.html -------------------------------------------------------------------------------- /iPhone/HockeyApp/jqmHockeyApp/www/lib/phonegap/plugins/.gitignore: -------------------------------------------------------------------------------- 1 | HockeyApp.js 2 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/.gitignore: -------------------------------------------------------------------------------- 1 | build/ 2 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/pluginHockeyApp/README -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/pluginHockeyApp.xcodeproj/.gitignore: -------------------------------------------------------------------------------- 1 | project.xcworkspace/ 2 | xcuserdata/ 3 | 4 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/pluginHockeyApp/HockeyAppKit/QuincyKit/CrashReporter.framework/CrashReporter: -------------------------------------------------------------------------------- 1 | Versions/Current/CrashReporter -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/pluginHockeyApp/HockeyAppKit/QuincyKit/CrashReporter.framework/Headers: -------------------------------------------------------------------------------- 1 | Versions/Current/Headers -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/pluginHockeyApp/HockeyAppKit/QuincyKit/CrashReporter.framework/Resources: -------------------------------------------------------------------------------- 1 | Versions/Current/Resources -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/pluginHockeyApp/HockeyAppKit/QuincyKit/CrashReporter.framework/Versions/Current: -------------------------------------------------------------------------------- 1 | A -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/pluginHockeyApp/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/www/.gitignore: -------------------------------------------------------------------------------- 1 | HockeyApp.js 2 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/pluginHockeyApp/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/pluginHockeyApp/www/index.html -------------------------------------------------------------------------------- /iPhone/HockeyApp/projectFiles/README: -------------------------------------------------------------------------------- 1 | Just some stuff to keep git'ing along 2 | -------------------------------------------------------------------------------- /iPhone/HockeyApp/projectFiles/gitAlong: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/projectFiles/gitAlong -------------------------------------------------------------------------------- /iPhone/HockeyApp/projectFiles/makeIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/HockeyApp/projectFiles/makeIT -------------------------------------------------------------------------------- /iPhone/InAppPurchaseManager/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/InAppPurchaseManager/README.md -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/KeychainPlugin-Host/.gitignore -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/KeychainPlugin-Host/Default.png -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/Resources-iPad/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/icon-72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/KeychainPlugin-Host/icon-72.png -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/KeychainPlugin-Host/icon.png -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/KeychainPlugin-Host/main.m -------------------------------------------------------------------------------- /iPhone/Keychain/KeychainPlugin-Host/www/.gitignore: -------------------------------------------------------------------------------- 1 | phonegap.js 2 | SAiOSPaypalPlugin.js -------------------------------------------------------------------------------- /iPhone/Keychain/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/README.md -------------------------------------------------------------------------------- /iPhone/Keychain/SAiOSKeychainPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/SAiOSKeychainPlugin.h -------------------------------------------------------------------------------- /iPhone/Keychain/SAiOSKeychainPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/SAiOSKeychainPlugin.js -------------------------------------------------------------------------------- /iPhone/Keychain/SAiOSKeychainPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Keychain/SAiOSKeychainPlugin.m -------------------------------------------------------------------------------- /iPhone/LocalNotification/example/css/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LocalNotification/example/css/style.css -------------------------------------------------------------------------------- /iPhone/LocalNotification/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LocalNotification/example/index.html -------------------------------------------------------------------------------- /iPhone/LocalNotification/example/js/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LocalNotification/example/js/init.js -------------------------------------------------------------------------------- /iPhone/LocalNotification/project/localNotifications/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPhone/LocalNotification/project/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LocalNotification/project/www/index.html -------------------------------------------------------------------------------- /iPhone/LocalNotification/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LocalNotification/readme.md -------------------------------------------------------------------------------- /iPhone/Localizable/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Localizable/README.md -------------------------------------------------------------------------------- /iPhone/Localizable/localizable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Localizable/localizable.h -------------------------------------------------------------------------------- /iPhone/Localizable/localizable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Localizable/localizable.js -------------------------------------------------------------------------------- /iPhone/Localizable/localizable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Localizable/localizable.m -------------------------------------------------------------------------------- /iPhone/LowLatencyAudio/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LowLatencyAudio/README.txt -------------------------------------------------------------------------------- /iPhone/LowLatencyAudio/src/PGLowLatencyAudio.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LowLatencyAudio/src/PGLowLatencyAudio.h -------------------------------------------------------------------------------- /iPhone/LowLatencyAudio/src/PGLowLatencyAudio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LowLatencyAudio/src/PGLowLatencyAudio.js -------------------------------------------------------------------------------- /iPhone/LowLatencyAudio/src/PGLowLatencyAudio.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/LowLatencyAudio/src/PGLowLatencyAudio.m -------------------------------------------------------------------------------- /iPhone/MapKitPlug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/README.md -------------------------------------------------------------------------------- /iPhone/MapKitPlug/example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/example/index.html -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/AsyncImageView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/AsyncImageView.h -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/AsyncImageView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/AsyncImageView.m -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/MapKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/MapKit.h -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/MapKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/MapKit.m -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/MapKitPlug.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/MapKitPlug.js -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/PGAnnotation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/PGAnnotation.h -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/PGAnnotation.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/PGAnnotation.m -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/icon.png -------------------------------------------------------------------------------- /iPhone/MapKitPlug/src/map-close-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MapKitPlug/src/map-close-button.png -------------------------------------------------------------------------------- /iPhone/MessageBox/MessageBox.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MessageBox/MessageBox.h -------------------------------------------------------------------------------- /iPhone/MessageBox/MessageBox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MessageBox/MessageBox.js -------------------------------------------------------------------------------- /iPhone/MessageBox/MessageBox.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MessageBox/MessageBox.m -------------------------------------------------------------------------------- /iPhone/MessageBox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/MessageBox/README.md -------------------------------------------------------------------------------- /iPhone/NativeControls/NativeControls.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NativeControls/NativeControls.h -------------------------------------------------------------------------------- /iPhone/NativeControls/NativeControls.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NativeControls/NativeControls.js -------------------------------------------------------------------------------- /iPhone/NativeControls/NativeControls.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NativeControls/NativeControls.m -------------------------------------------------------------------------------- /iPhone/NotificationEx/LoadingView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/LoadingView.h -------------------------------------------------------------------------------- /iPhone/NotificationEx/LoadingView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/LoadingView.m -------------------------------------------------------------------------------- /iPhone/NotificationEx/NotificationEx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/NotificationEx.h -------------------------------------------------------------------------------- /iPhone/NotificationEx/NotificationEx.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/NotificationEx.m -------------------------------------------------------------------------------- /iPhone/NotificationEx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/README.md -------------------------------------------------------------------------------- /iPhone/NotificationEx/UIColor-Expanded.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/UIColor-Expanded.h -------------------------------------------------------------------------------- /iPhone/NotificationEx/UIColor-Expanded.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/UIColor-Expanded.m -------------------------------------------------------------------------------- /iPhone/NotificationEx/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/index.html -------------------------------------------------------------------------------- /iPhone/NotificationEx/notificationex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/NotificationEx/notificationex.js -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/.EXAMPLES/DO_NOT_ADD_PayPalPlugin-Hosts.md: -------------------------------------------------------------------------------- 1 | Do not add the PayPalPlugin-Hosts to your application -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/.EXAMPLES/PayPalPLugin-Host141/PayPalPLugin-Host141/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/.EXAMPLES/PayPalPlugin-Host/Resources-iPad/README: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/.EXAMPLES/PayPalPlugin-Host/www/.gitignore: -------------------------------------------------------------------------------- 1 | phonegap.js 2 | SAiOSPaypalPlugin.js -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/.gitignore -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/README.md -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/SAiOSPaypalPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/SAiOSPaypalPlugin.h -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/SAiOSPaypalPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/SAiOSPaypalPlugin.js -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/SAiOSPaypalPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/SAiOSPaypalPlugin.m -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/index.html -------------------------------------------------------------------------------- /iPhone/PayPalPlugin/master.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PayPalPlugin/master.css -------------------------------------------------------------------------------- /iPhone/PrintPlugin/PrintPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PrintPlugin/PrintPlugin.h -------------------------------------------------------------------------------- /iPhone/PrintPlugin/PrintPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PrintPlugin/PrintPlugin.js -------------------------------------------------------------------------------- /iPhone/PrintPlugin/PrintPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PrintPlugin/PrintPlugin.m -------------------------------------------------------------------------------- /iPhone/PrintPlugin/READEME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PrintPlugin/READEME.md -------------------------------------------------------------------------------- /iPhone/PrintPlugin/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PrintPlugin/index.html -------------------------------------------------------------------------------- /iPhone/Prompt/Prompt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Prompt/Prompt.h -------------------------------------------------------------------------------- /iPhone/Prompt/Prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Prompt/Prompt.js -------------------------------------------------------------------------------- /iPhone/Prompt/Prompt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Prompt/Prompt.m -------------------------------------------------------------------------------- /iPhone/Prompt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Prompt/README.md -------------------------------------------------------------------------------- /iPhone/PushNotification/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/AppDelegate.h -------------------------------------------------------------------------------- /iPhone/PushNotification/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/AppDelegate.m -------------------------------------------------------------------------------- /iPhone/PushNotification/PushNotification.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/PushNotification.h -------------------------------------------------------------------------------- /iPhone/PushNotification/PushNotification.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/PushNotification.js -------------------------------------------------------------------------------- /iPhone/PushNotification/PushNotification.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/PushNotification.m -------------------------------------------------------------------------------- /iPhone/PushNotification/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/README.md -------------------------------------------------------------------------------- /iPhone/PushNotification/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/PushNotification/demo.html -------------------------------------------------------------------------------- /iPhone/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/README.md -------------------------------------------------------------------------------- /iPhone/SMSComposer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SMSComposer/README.md -------------------------------------------------------------------------------- /iPhone/SMSComposer/SMSComposer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SMSComposer/SMSComposer.h -------------------------------------------------------------------------------- /iPhone/SMSComposer/SMSComposer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SMSComposer/SMSComposer.js -------------------------------------------------------------------------------- /iPhone/SMSComposer/SMSComposer.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SMSComposer/SMSComposer.m -------------------------------------------------------------------------------- /iPhone/SMSComposer/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SMSComposer/index.html -------------------------------------------------------------------------------- /iPhone/ScreenShot/ScreenShot.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ScreenShot/ScreenShot.h -------------------------------------------------------------------------------- /iPhone/ScreenShot/ScreenShot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ScreenShot/ScreenShot.js -------------------------------------------------------------------------------- /iPhone/ScreenShot/ScreenShot.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ScreenShot/ScreenShot.m -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/README.md -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/SHKSharer+Phonegap.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/SHKSharer+Phonegap.h -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/SHKSharer+Phonegap.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/SHKSharer+Phonegap.m -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/ShareKitPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/ShareKitPlugin.h -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/ShareKitPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/ShareKitPlugin.js -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/ShareKitPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/ShareKitPlugin.m -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/example/example/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/example/example/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/example/example/main.m -------------------------------------------------------------------------------- /iPhone/ShareKitPlugin/example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/ShareKitPlugin/example/www/index.html -------------------------------------------------------------------------------- /iPhone/SoundPlug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SoundPlug/README.md -------------------------------------------------------------------------------- /iPhone/SoundPlug/SoundPlug.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SoundPlug/SoundPlug.h -------------------------------------------------------------------------------- /iPhone/SoundPlug/SoundPlug.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SoundPlug/SoundPlug.m -------------------------------------------------------------------------------- /iPhone/SplashScreen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SplashScreen/README.md -------------------------------------------------------------------------------- /iPhone/SplashScreen/SplashScreen.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SplashScreen/SplashScreen.h -------------------------------------------------------------------------------- /iPhone/SplashScreen/SplashScreen.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SplashScreen/SplashScreen.js -------------------------------------------------------------------------------- /iPhone/SplashScreen/SplashScreen.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/SplashScreen/SplashScreen.m -------------------------------------------------------------------------------- /iPhone/TestFlight/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/TestFlight/README.md -------------------------------------------------------------------------------- /iPhone/Torch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Torch/README.md -------------------------------------------------------------------------------- /iPhone/Twitter/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/LICENSE.md -------------------------------------------------------------------------------- /iPhone/Twitter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/README.md -------------------------------------------------------------------------------- /iPhone/Twitter/example/www/demo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/example/www/demo.js -------------------------------------------------------------------------------- /iPhone/Twitter/example/www/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/example/www/index.html -------------------------------------------------------------------------------- /iPhone/Twitter/example/www/ninja-lolcat.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/example/www/ninja-lolcat.gif -------------------------------------------------------------------------------- /iPhone/Twitter/install: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/install -------------------------------------------------------------------------------- /iPhone/Twitter/native/ios/TwitterPlugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/native/ios/TwitterPlugin.h -------------------------------------------------------------------------------- /iPhone/Twitter/native/ios/TwitterPlugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/native/ios/TwitterPlugin.m -------------------------------------------------------------------------------- /iPhone/Twitter/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/package.json -------------------------------------------------------------------------------- /iPhone/Twitter/www/TwitterPlugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/Twitter/www/TwitterPlugin.js -------------------------------------------------------------------------------- /iPhone/UniqueIdentifier/PGUniqueIdentifier.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/UniqueIdentifier/PGUniqueIdentifier.h -------------------------------------------------------------------------------- /iPhone/UniqueIdentifier/PGUniqueIdentifier.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/UniqueIdentifier/PGUniqueIdentifier.m -------------------------------------------------------------------------------- /iPhone/UniqueIdentifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/UniqueIdentifier/README.md -------------------------------------------------------------------------------- /iPhone/UniqueIdentifier/UniqueIdentifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/UniqueIdentifier/UniqueIdentifier.js -------------------------------------------------------------------------------- /iPhone/VolumeSlider/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/VolumeSlider/README.md -------------------------------------------------------------------------------- /iPhone/VolumeSlider/VolumeSlider.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/VolumeSlider/VolumeSlider.h -------------------------------------------------------------------------------- /iPhone/VolumeSlider/VolumeSlider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/VolumeSlider/VolumeSlider.js -------------------------------------------------------------------------------- /iPhone/VolumeSlider/VolumeSlider.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/VolumeSlider/VolumeSlider.m -------------------------------------------------------------------------------- /iPhone/__orphanage/Image.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/__orphanage/Image.h -------------------------------------------------------------------------------- /iPhone/__orphanage/Image.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/__orphanage/Image.m -------------------------------------------------------------------------------- /iPhone/__orphanage/Movie.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/__orphanage/Movie.h -------------------------------------------------------------------------------- /iPhone/__orphanage/Movie.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/__orphanage/Movie.m -------------------------------------------------------------------------------- /iPhone/__orphanage/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/__orphanage/README.md -------------------------------------------------------------------------------- /iPhone/networkActivityIndicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Red-Folder/phonegap-plugins/HEAD/iPhone/networkActivityIndicator/README.md --------------------------------------------------------------------------------