gitextract__8kjs166/ ├── .gitignore ├── LICENSE ├── README.md ├── config.xml ├── gulpfile.js ├── package.json ├── plugins/ │ ├── android.json │ ├── code-push/ │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── script/ │ │ │ ├── acquisition-sdk.js │ │ │ ├── index.js │ │ │ ├── management-sdk.js │ │ │ └── types.js │ │ └── test/ │ │ ├── acquisition-rest-mock.js │ │ ├── acquisition-sdk.js │ │ ├── management-sdk.js │ │ └── superagent-mock-config.js │ ├── cordova-plugin-appavailability/ │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── AppAvailability.java │ │ │ └── ios/ │ │ │ ├── AppAvailability.h │ │ │ └── AppAvailability.m │ │ └── www/ │ │ └── AppAvailability.js │ ├── cordova-plugin-code-push/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE.md │ │ ├── bin/ │ │ │ └── www/ │ │ │ ├── codePush.js │ │ │ ├── codePushUtil.js │ │ │ ├── fileUtil.js │ │ │ ├── httpRequester.js │ │ │ ├── installMode.js │ │ │ ├── localPackage.js │ │ │ ├── nativeAppInfo.js │ │ │ ├── package.js │ │ │ ├── remotePackage.js │ │ │ ├── sdk.js │ │ │ └── syncStatus.js │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── samples/ │ │ │ ├── advanced/ │ │ │ │ ├── README.md │ │ │ │ ├── config.xml │ │ │ │ └── www/ │ │ │ │ ├── css/ │ │ │ │ │ └── index.css │ │ │ │ ├── index.html │ │ │ │ └── js/ │ │ │ │ └── index.js │ │ │ └── basic/ │ │ │ ├── README.md │ │ │ ├── config.xml │ │ │ └── www/ │ │ │ ├── css/ │ │ │ │ └── index.css │ │ │ ├── index.html │ │ │ └── js/ │ │ │ └── index.js │ │ └── src/ │ │ ├── android/ │ │ │ ├── CodePush.java │ │ │ ├── CodePushPackageManager.java │ │ │ ├── CodePushPackageMetadata.java │ │ │ ├── CodePushPreferences.java │ │ │ ├── CodePushReportingManager.java │ │ │ ├── InstallMode.java │ │ │ ├── InstallOptions.java │ │ │ ├── UpdateHashUtils.java │ │ │ ├── Utilities.java │ │ │ └── build-extras.gradle │ │ └── ios/ │ │ ├── CodePush.h │ │ ├── CodePush.m │ │ ├── CodePushPackageManager.h │ │ ├── CodePushPackageManager.m │ │ ├── CodePushPackageMetadata.h │ │ ├── CodePushPackageMetadata.m │ │ ├── CodePushReportingManager.h │ │ ├── CodePushReportingManager.m │ │ ├── InstallMode.h │ │ ├── InstallOptions.h │ │ ├── InstallOptions.m │ │ ├── UpdateHashUtils.h │ │ ├── UpdateHashUtils.m │ │ ├── Utilities.h │ │ └── Utilities.m │ ├── cordova-plugin-compat/ │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src/ │ │ └── android/ │ │ └── PermissionHelper.java │ ├── cordova-plugin-device/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── Device.java │ │ │ ├── blackberry10/ │ │ │ │ └── index.js │ │ │ ├── browser/ │ │ │ │ └── DeviceProxy.js │ │ │ ├── firefoxos/ │ │ │ │ └── DeviceProxy.js │ │ │ ├── ios/ │ │ │ │ ├── CDVDevice.h │ │ │ │ └── CDVDevice.m │ │ │ ├── osx/ │ │ │ │ ├── CDVDevice.h │ │ │ │ └── CDVDevice.m │ │ │ ├── tizen/ │ │ │ │ └── DeviceProxy.js │ │ │ ├── ubuntu/ │ │ │ │ ├── device.cpp │ │ │ │ ├── device.h │ │ │ │ └── device.js │ │ │ ├── windows/ │ │ │ │ └── DeviceProxy.js │ │ │ └── wp/ │ │ │ └── Device.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ └── device.js │ ├── cordova-plugin-dialogs/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── Notification.java │ │ │ ├── blackberry10/ │ │ │ │ └── index.js │ │ │ ├── firefoxos/ │ │ │ │ └── notification.js │ │ │ ├── ios/ │ │ │ │ ├── CDVNotification.h │ │ │ │ └── CDVNotification.m │ │ │ ├── ubuntu/ │ │ │ │ ├── notification.cpp │ │ │ │ ├── notification.h │ │ │ │ └── notification.qml │ │ │ ├── windows/ │ │ │ │ └── NotificationProxy.js │ │ │ └── wp/ │ │ │ ├── Notification.cs │ │ │ ├── NotificationBox.xaml │ │ │ └── NotificationBox.xaml.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ ├── android/ │ │ │ └── notification.js │ │ ├── blackberry10/ │ │ │ └── beep.js │ │ ├── browser/ │ │ │ └── notification.js │ │ ├── firefoxos/ │ │ │ └── notification.css │ │ └── notification.js │ ├── cordova-plugin-file/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ ├── plugins.md │ │ │ ├── ru/ │ │ │ │ ├── index.md │ │ │ │ └── plugins.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ ├── index.md │ │ │ └── plugins.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ ├── AssetFilesystem.java │ │ │ │ ├── ContentFilesystem.java │ │ │ │ ├── DirectoryManager.java │ │ │ │ ├── EncodingException.java │ │ │ │ ├── FileExistsException.java │ │ │ │ ├── FileUtils.java │ │ │ │ ├── Filesystem.java │ │ │ │ ├── InvalidModificationException.java │ │ │ │ ├── LocalFilesystem.java │ │ │ │ ├── LocalFilesystemURL.java │ │ │ │ ├── NoModificationAllowedException.java │ │ │ │ ├── PendingRequests.java │ │ │ │ ├── TypeMismatchException.java │ │ │ │ └── build-extras.gradle │ │ │ ├── blackberry10/ │ │ │ │ └── index.js │ │ │ ├── browser/ │ │ │ │ └── FileProxy.js │ │ │ ├── firefoxos/ │ │ │ │ └── FileProxy.js │ │ │ ├── ios/ │ │ │ │ ├── CDVAssetLibraryFilesystem.h │ │ │ │ ├── CDVAssetLibraryFilesystem.m │ │ │ │ ├── CDVFile.h │ │ │ │ ├── CDVFile.m │ │ │ │ ├── CDVLocalFilesystem.h │ │ │ │ └── CDVLocalFilesystem.m │ │ │ ├── osx/ │ │ │ │ ├── CDVFile.h │ │ │ │ ├── CDVFile.m │ │ │ │ ├── CDVLocalFilesystem.h │ │ │ │ └── CDVLocalFilesystem.m │ │ │ ├── ubuntu/ │ │ │ │ ├── file.cpp │ │ │ │ └── file.h │ │ │ ├── windows/ │ │ │ │ └── FileProxy.js │ │ │ └── wp/ │ │ │ └── File.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ ├── src/ │ │ │ │ └── android/ │ │ │ │ └── TestContentProvider.java │ │ │ ├── tests.js │ │ │ └── www/ │ │ │ └── fixtures/ │ │ │ └── asset-test/ │ │ │ └── asset-test.txt │ │ └── www/ │ │ ├── DirectoryEntry.js │ │ ├── DirectoryReader.js │ │ ├── Entry.js │ │ ├── File.js │ │ ├── FileEntry.js │ │ ├── FileError.js │ │ ├── FileReader.js │ │ ├── FileSystem.js │ │ ├── FileUploadOptions.js │ │ ├── FileUploadResult.js │ │ ├── FileWriter.js │ │ ├── Flags.js │ │ ├── LocalFileSystem.js │ │ ├── Metadata.js │ │ ├── ProgressEvent.js │ │ ├── android/ │ │ │ └── FileSystem.js │ │ ├── blackberry10/ │ │ │ ├── .jshintrc │ │ │ ├── FileProxy.js │ │ │ ├── FileSystem.js │ │ │ ├── copyTo.js │ │ │ ├── createEntryFromNative.js │ │ │ ├── getDirectory.js │ │ │ ├── getFile.js │ │ │ ├── getFileMetadata.js │ │ │ ├── getMetadata.js │ │ │ ├── getParent.js │ │ │ ├── info.js │ │ │ ├── moveTo.js │ │ │ ├── readAsArrayBuffer.js │ │ │ ├── readAsBinaryString.js │ │ │ ├── readAsDataURL.js │ │ │ ├── readAsText.js │ │ │ ├── readEntries.js │ │ │ ├── remove.js │ │ │ ├── removeRecursively.js │ │ │ ├── requestAllFileSystems.js │ │ │ ├── requestAnimationFrame.js │ │ │ ├── requestFileSystem.js │ │ │ ├── resolveLocalFileSystemURI.js │ │ │ ├── setMetadata.js │ │ │ ├── truncate.js │ │ │ └── write.js │ │ ├── browser/ │ │ │ ├── FileSystem.js │ │ │ ├── Preparing.js │ │ │ └── isChrome.js │ │ ├── fileSystemPaths.js │ │ ├── fileSystems-roots.js │ │ ├── fileSystems.js │ │ ├── firefoxos/ │ │ │ └── FileSystem.js │ │ ├── ios/ │ │ │ └── FileSystem.js │ │ ├── osx/ │ │ │ └── FileSystem.js │ │ ├── requestFileSystem.js │ │ ├── resolveLocalFileSystemURI.js │ │ ├── ubuntu/ │ │ │ ├── FileSystem.js │ │ │ ├── FileWriter.js │ │ │ └── fileSystems-roots.js │ │ └── wp/ │ │ └── FileUploadOptions.js │ ├── cordova-plugin-file-transfer/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── amazon/ │ │ │ │ └── FileTransfer.java │ │ │ ├── android/ │ │ │ │ ├── FileProgressResult.java │ │ │ │ ├── FileTransfer.java │ │ │ │ └── FileUploadResult.java │ │ │ ├── ios/ │ │ │ │ ├── CDVFileTransfer.h │ │ │ │ └── CDVFileTransfer.m │ │ │ ├── ubuntu/ │ │ │ │ ├── file-transfer.cpp │ │ │ │ └── file-transfer.h │ │ │ ├── windows/ │ │ │ │ └── FileTransferProxy.js │ │ │ └── wp/ │ │ │ └── FileTransfer.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ ├── FileTransfer.js │ │ ├── FileTransferError.js │ │ ├── blackberry10/ │ │ │ ├── .jshintrc │ │ │ ├── FileTransfer.js │ │ │ ├── FileTransferProxy.js │ │ │ └── xhrFileTransfer.js │ │ ├── browser/ │ │ │ └── FileTransfer.js │ │ ├── firefoxos/ │ │ │ └── FileTransferProxy.js │ │ └── wp7/ │ │ └── base64.js │ ├── cordova-plugin-inappbrowser/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── amazon/ │ │ │ │ ├── InAppBrowser.java │ │ │ │ └── InAppChromeClient.java │ │ │ ├── android/ │ │ │ │ ├── InAppBrowser.java │ │ │ │ ├── InAppBrowserDialog.java │ │ │ │ └── InAppChromeClient.java │ │ │ ├── blackberry10/ │ │ │ │ ├── README.md │ │ │ │ └── doc/ │ │ │ │ ├── de/ │ │ │ │ │ └── README.md │ │ │ │ ├── es/ │ │ │ │ │ └── README.md │ │ │ │ ├── fr/ │ │ │ │ │ └── README.md │ │ │ │ ├── it/ │ │ │ │ │ └── README.md │ │ │ │ ├── ja/ │ │ │ │ │ └── README.md │ │ │ │ ├── ko/ │ │ │ │ │ └── README.md │ │ │ │ ├── pl/ │ │ │ │ │ └── README.md │ │ │ │ └── zh/ │ │ │ │ └── README.md │ │ │ ├── browser/ │ │ │ │ └── InAppBrowserProxy.js │ │ │ ├── firefoxos/ │ │ │ │ └── InAppBrowserProxy.js │ │ │ ├── ios/ │ │ │ │ ├── CDVInAppBrowser.h │ │ │ │ └── CDVInAppBrowser.m │ │ │ ├── ubuntu/ │ │ │ │ ├── InAppBrowser.qml │ │ │ │ ├── InAppBrowser_escapeScript.js │ │ │ │ ├── inappbrowser.cpp │ │ │ │ └── inappbrowser.h │ │ │ ├── windows/ │ │ │ │ └── InAppBrowserProxy.js │ │ │ └── wp/ │ │ │ └── InAppBrowser.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ ├── resources/ │ │ │ │ ├── inject.css │ │ │ │ ├── inject.html │ │ │ │ ├── inject.js │ │ │ │ ├── local.html │ │ │ │ └── video.html │ │ │ └── tests.js │ │ └── www/ │ │ ├── inappbrowser.css │ │ ├── inappbrowser.js │ │ └── windows8/ │ │ └── InAppBrowserProxy.js │ ├── cordova-plugin-splashscreen/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── SplashScreen.java │ │ │ ├── blackberry10/ │ │ │ │ └── index.js │ │ │ ├── browser/ │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ios/ │ │ │ │ ├── CDVSplashScreen.h │ │ │ │ ├── CDVSplashScreen.m │ │ │ │ ├── CDVViewController+SplashScreen.h │ │ │ │ └── CDVViewController+SplashScreen.m │ │ │ ├── tizen/ │ │ │ │ └── SplashScreenProxy.js │ │ │ ├── ubuntu/ │ │ │ │ ├── splashscreen.cpp │ │ │ │ └── splashscreen.h │ │ │ └── wp/ │ │ │ ├── ResolutionHelper.cs │ │ │ └── SplashScreen.cs │ │ ├── tests/ │ │ │ ├── ios/ │ │ │ │ ├── CDVSplashScreenTest/ │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CDVSplashScreenLibTests/ │ │ │ │ │ │ ├── ImageNameTest.m │ │ │ │ │ │ ├── ImageNameTestDelegates.h │ │ │ │ │ │ ├── ImageNameTestDelegates.m │ │ │ │ │ │ └── Info.plist │ │ │ │ │ └── CDVSplashScreenTest.xcodeproj/ │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace/ │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── xcschemes/ │ │ │ │ │ ├── CDVSplashScreenLib.xcscheme │ │ │ │ │ └── CDVSplashScreenLibTests.xcscheme │ │ │ │ ├── CDVSplashScreenTest.xcworkspace/ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ └── xcshareddata/ │ │ │ │ │ └── xcschemes/ │ │ │ │ │ └── CordovaLib.xcscheme │ │ │ │ ├── README.md │ │ │ │ ├── doc/ │ │ │ │ │ ├── de/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── es/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── fr/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── it/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ja/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── ko/ │ │ │ │ │ │ └── README.md │ │ │ │ │ ├── pl/ │ │ │ │ │ │ └── README.md │ │ │ │ │ └── zh/ │ │ │ │ │ └── README.md │ │ │ │ └── package.json │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ ├── splashscreen.js │ │ └── windows/ │ │ └── SplashScreenProxy.js │ ├── cordova-plugin-statusbar/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── StatusBar.java │ │ │ ├── ios/ │ │ │ │ ├── CDVStatusBar.h │ │ │ │ └── CDVStatusBar.m │ │ │ ├── windows/ │ │ │ │ └── StatusBarProxy.js │ │ │ └── wp/ │ │ │ └── StatusBar.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ └── statusbar.js │ ├── cordova-plugin-vibration/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── es/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── fr/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── it/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ja/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ko/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── pl/ │ │ │ │ ├── README.md │ │ │ │ └── index.md │ │ │ ├── ru/ │ │ │ │ └── index.md │ │ │ └── zh/ │ │ │ ├── README.md │ │ │ └── index.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── Vibration.java │ │ │ ├── blackberry10/ │ │ │ │ ├── index.js │ │ │ │ └── native/ │ │ │ │ ├── .cproject │ │ │ │ ├── .project │ │ │ │ ├── public/ │ │ │ │ │ ├── plugin.cpp │ │ │ │ │ ├── plugin.h │ │ │ │ │ ├── tokenizer.cpp │ │ │ │ │ └── tokenizer.h │ │ │ │ └── src/ │ │ │ │ ├── vibration_js.cpp │ │ │ │ └── vibration_js.hpp │ │ │ ├── firefoxos/ │ │ │ │ └── VibrationProxy.js │ │ │ ├── ios/ │ │ │ │ ├── CDVVibration.h │ │ │ │ └── CDVVibration.m │ │ │ ├── tizen/ │ │ │ │ └── VibrationProxy.js │ │ │ ├── ubuntu/ │ │ │ │ ├── vibration.cpp │ │ │ │ └── vibration.h │ │ │ ├── windows/ │ │ │ │ ├── Vibration/ │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── Properties/ │ │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ │ ├── Vibration.cs │ │ │ │ │ └── Vibration.csproj │ │ │ │ └── VibrationProxy.js │ │ │ └── wp/ │ │ │ └── Vibration.cs │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── www/ │ │ ├── blackberry10/ │ │ │ └── vibrate.js │ │ └── vibration.js │ ├── cordova-plugin-whitelist/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── NOTICE │ │ ├── README.md │ │ ├── RELEASENOTES.md │ │ ├── doc/ │ │ │ ├── de/ │ │ │ │ └── README.md │ │ │ ├── es/ │ │ │ │ └── README.md │ │ │ ├── fr/ │ │ │ │ └── README.md │ │ │ ├── it/ │ │ │ │ └── README.md │ │ │ ├── ja/ │ │ │ │ └── README.md │ │ │ ├── ko/ │ │ │ │ └── README.md │ │ │ ├── pl/ │ │ │ │ └── README.md │ │ │ └── zh/ │ │ │ └── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ └── src/ │ │ └── android/ │ │ └── WhitelistPlugin.java │ ├── cordova-plugin-zip/ │ │ ├── CONTRIBUTING.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ ├── plugin.xml │ │ ├── src/ │ │ │ ├── android/ │ │ │ │ └── Zip.java │ │ │ └── ios/ │ │ │ ├── Common.h │ │ │ ├── SSZipArchive.h │ │ │ ├── SSZipArchive.m │ │ │ ├── ZipPlugin.h │ │ │ ├── ZipPlugin.m │ │ │ ├── aes/ │ │ │ │ ├── aes.h │ │ │ │ ├── aes_via_ace.h │ │ │ │ ├── aescrypt.c │ │ │ │ ├── aeskey.c │ │ │ │ ├── aesopt.h │ │ │ │ ├── aestab.c │ │ │ │ ├── aestab.h │ │ │ │ ├── brg_endian.h │ │ │ │ ├── brg_types.h │ │ │ │ ├── entropy.c │ │ │ │ ├── entropy.h │ │ │ │ ├── fileenc.c │ │ │ │ ├── fileenc.h │ │ │ │ ├── hmac.c │ │ │ │ ├── hmac.h │ │ │ │ ├── prng.c │ │ │ │ ├── prng.h │ │ │ │ ├── pwd2key.c │ │ │ │ ├── pwd2key.h │ │ │ │ ├── sha1.c │ │ │ │ └── sha1.h │ │ │ └── minizip/ │ │ │ ├── crypt.h │ │ │ ├── ioapi.c │ │ │ ├── ioapi.h │ │ │ ├── mztools.c │ │ │ ├── mztools.h │ │ │ ├── unzip.c │ │ │ ├── unzip.h │ │ │ ├── zip.c │ │ │ └── zip.h │ │ ├── tests/ │ │ │ ├── plugin.xml │ │ │ └── tests.js │ │ └── zip.js │ ├── fetch.json │ └── phonegap-plugin-barcodescanner/ │ ├── README.md │ ├── package.json │ ├── plugin.xml │ ├── src/ │ │ ├── android/ │ │ │ ├── LibraryProject/ │ │ │ │ ├── .npmignore │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── ant.properties │ │ │ │ ├── assets/ │ │ │ │ │ ├── html-de/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-en/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-es/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-fr/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-it/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-ja/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-ko/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-nl/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-pt/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-ru/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-zh-rCN/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ ├── html-zh-rTW/ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ └── whatsnew.html │ │ │ │ │ └── style.css │ │ │ │ ├── proguard-android-optimize.txt │ │ │ │ ├── project.properties │ │ │ │ ├── res/ │ │ │ │ │ ├── layout/ │ │ │ │ │ │ ├── bookmark_picker_list_item.xml │ │ │ │ │ │ ├── capture.xml │ │ │ │ │ │ ├── encode.xml │ │ │ │ │ │ ├── help.xml │ │ │ │ │ │ ├── history_list_item.xml │ │ │ │ │ │ ├── search_book_contents.xml │ │ │ │ │ │ ├── search_book_contents_header.xml │ │ │ │ │ │ ├── search_book_contents_list_item.xml │ │ │ │ │ │ └── share.xml │ │ │ │ │ ├── layout-land/ │ │ │ │ │ │ ├── encode.xml │ │ │ │ │ │ └── share.xml │ │ │ │ │ ├── layout-ldpi/ │ │ │ │ │ │ └── capture.xml │ │ │ │ │ ├── menu/ │ │ │ │ │ │ ├── capture.xml │ │ │ │ │ │ ├── encode.xml │ │ │ │ │ │ └── history.xml │ │ │ │ │ ├── raw/ │ │ │ │ │ │ └── beep.ogg │ │ │ │ │ ├── values/ │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ ├── ids.xml │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ar/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-bg/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ca/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-cs/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-da/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-de/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-el/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-es/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-eu/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fi/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-fr/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-he/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-hi/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-hu/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-id/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-it/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-iw/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ja/ │ │ │ │ │ │ └── strings.xml │ │ │ │ │ ├── values-ko/ │ │ │ │ │ │ └── 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 │ │ │ │ │ └── xml/ │ │ │ │ │ └── preferences.xml │ │ │ │ └── src/ │ │ │ │ └── com/ │ │ │ │ └── google/ │ │ │ │ └── zxing/ │ │ │ │ ├── BarcodeFormat.java │ │ │ │ ├── Binarizer.java │ │ │ │ ├── BinaryBitmap.java │ │ │ │ ├── ChecksumException.java │ │ │ │ ├── DecodeHintType.java │ │ │ │ ├── EncodeHintType.java │ │ │ │ ├── FakeR.java │ │ │ │ ├── FormatException.java │ │ │ │ ├── LuminanceSource.java │ │ │ │ ├── MultiFormatReader.java │ │ │ │ ├── MultiFormatWriter.java │ │ │ │ ├── NotFoundException.java │ │ │ │ ├── PlanarYUVLuminanceSource.java │ │ │ │ ├── RGBLuminanceSource.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/ │ │ │ │ │ │ ├── BeepManager.java │ │ │ │ │ │ ├── CaptureActivity.java │ │ │ │ │ │ ├── CaptureActivityHandler.java │ │ │ │ │ │ ├── Contents.java │ │ │ │ │ │ ├── DecodeFormatManager.java │ │ │ │ │ │ ├── DecodeHandler.java │ │ │ │ │ │ ├── DecodeThread.java │ │ │ │ │ │ ├── FinishListener.java │ │ │ │ │ │ ├── HelpActivity.java │ │ │ │ │ │ ├── HttpHelper.java │ │ │ │ │ │ ├── InactivityTimer.java │ │ │ │ │ │ ├── IntentSource.java │ │ │ │ │ │ ├── Intents.java │ │ │ │ │ │ ├── LocaleManager.java │ │ │ │ │ │ ├── PreferencesActivity.java │ │ │ │ │ │ ├── ViewfinderResultPointCallback.java │ │ │ │ │ │ ├── ViewfinderView.java │ │ │ │ │ │ ├── book/ │ │ │ │ │ │ │ ├── BrowseBookListener.java │ │ │ │ │ │ │ ├── SearchBookContentsActivity.java │ │ │ │ │ │ │ ├── SearchBookContentsAdapter.java │ │ │ │ │ │ │ ├── SearchBookContentsListItem.java │ │ │ │ │ │ │ └── SearchBookContentsResult.java │ │ │ │ │ │ ├── camera/ │ │ │ │ │ │ │ ├── AutoFocusManager.java │ │ │ │ │ │ │ ├── CameraConfigurationManager.java │ │ │ │ │ │ │ ├── CameraManager.java │ │ │ │ │ │ │ ├── PreviewCallback.java │ │ │ │ │ │ │ ├── exposure/ │ │ │ │ │ │ │ │ ├── DefaultExposureInterface.java │ │ │ │ │ │ │ │ ├── ExposureInterface.java │ │ │ │ │ │ │ │ ├── ExposureManager.java │ │ │ │ │ │ │ │ └── FroyoExposureInterface.java │ │ │ │ │ │ │ └── open/ │ │ │ │ │ │ │ ├── DefaultOpenCameraInterface.java │ │ │ │ │ │ │ ├── GingerbreadOpenCameraInterface.java │ │ │ │ │ │ │ ├── OpenCameraInterface.java │ │ │ │ │ │ │ └── OpenCameraManager.java │ │ │ │ │ │ ├── common/ │ │ │ │ │ │ │ ├── PlatformSupportManager.java │ │ │ │ │ │ │ └── executor/ │ │ │ │ │ │ │ ├── AsyncTaskExecInterface.java │ │ │ │ │ │ │ ├── AsyncTaskExecManager.java │ │ │ │ │ │ │ ├── DefaultAsyncTaskExecInterface.java │ │ │ │ │ │ │ └── HoneycombAsyncTaskExecInterface.java │ │ │ │ │ │ ├── encode/ │ │ │ │ │ │ │ ├── ContactEncoder.java │ │ │ │ │ │ │ ├── EncodeActivity.java │ │ │ │ │ │ │ ├── Formatter.java │ │ │ │ │ │ │ ├── MECARDContactEncoder.java │ │ │ │ │ │ │ ├── QRCodeEncoder.java │ │ │ │ │ │ │ └── VCardContactEncoder.java │ │ │ │ │ │ ├── history/ │ │ │ │ │ │ │ ├── DBHelper.java │ │ │ │ │ │ │ ├── HistoryActivity.java │ │ │ │ │ │ │ ├── HistoryItem.java │ │ │ │ │ │ │ ├── HistoryItemAdapter.java │ │ │ │ │ │ │ └── HistoryManager.java │ │ │ │ │ │ ├── pref/ │ │ │ │ │ │ │ └── BSPlusPreference.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/ │ │ │ │ │ │ │ ├── BookResultInfoRetriever.java │ │ │ │ │ │ │ ├── ProductResultInfoRetriever.java │ │ │ │ │ │ │ ├── SupplementalInfoRetriever.java │ │ │ │ │ │ │ ├── TitleRetriever.java │ │ │ │ │ │ │ └── URIResultInfoRetriever.java │ │ │ │ │ │ ├── share/ │ │ │ │ │ │ │ ├── AppPickerActivity.java │ │ │ │ │ │ │ ├── BookmarkAdapter.java │ │ │ │ │ │ │ ├── BookmarkPickerActivity.java │ │ │ │ │ │ │ ├── LoadPackagesAsyncTask.java │ │ │ │ │ │ │ └── ShareActivity.java │ │ │ │ │ │ └── wifi/ │ │ │ │ │ │ ├── NetworkType.java │ │ │ │ │ │ └── WifiConfigManager.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 │ │ │ │ ├── common/ │ │ │ │ │ ├── BitArray.java │ │ │ │ │ ├── BitMatrix.java │ │ │ │ │ ├── BitSource.java │ │ │ │ │ ├── CharacterSetECI.java │ │ │ │ │ ├── DecoderResult.java │ │ │ │ │ ├── DefaultGridSampler.java │ │ │ │ │ ├── DetectorResult.java │ │ │ │ │ ├── GlobalHistogramBinarizer.java │ │ │ │ │ ├── GridSampler.java │ │ │ │ │ ├── HybridBinarizer.java │ │ │ │ │ ├── PerspectiveTransform.java │ │ │ │ │ ├── StringUtils.java │ │ │ │ │ ├── detector/ │ │ │ │ │ │ ├── MathUtils.java │ │ │ │ │ │ ├── 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 │ │ │ │ ├── maxicode/ │ │ │ │ │ ├── MaxiCodeReader.java │ │ │ │ │ └── decoder/ │ │ │ │ │ ├── BitMatrixParser.java │ │ │ │ │ ├── DecodedBitStreamParser.java │ │ │ │ │ └── Decoder.java │ │ │ │ ├── multi/ │ │ │ │ │ ├── ByQuadrantReader.java │ │ │ │ │ ├── GenericMultipleBarcodeReader.java │ │ │ │ │ ├── MultipleBarcodeReader.java │ │ │ │ │ └── qrcode/ │ │ │ │ │ ├── QRCodeMultiReader.java │ │ │ │ │ └── detector/ │ │ │ │ │ ├── MultiDetector.java │ │ │ │ │ └── MultiFinderPatternFinder.java │ │ │ │ ├── oned/ │ │ │ │ │ ├── CodaBarReader.java │ │ │ │ │ ├── CodaBarWriter.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 │ │ │ │ │ ├── OneDimensionalCodeWriter.java │ │ │ │ │ ├── UPCAReader.java │ │ │ │ │ ├── UPCAWriter.java │ │ │ │ │ ├── UPCEANExtension2Support.java │ │ │ │ │ ├── UPCEANExtension5Support.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 │ │ │ │ │ │ └── ec/ │ │ │ │ │ │ ├── ErrorCorrection.java │ │ │ │ │ │ ├── ModulusGF.java │ │ │ │ │ │ └── ModulusPoly.java │ │ │ │ │ ├── detector/ │ │ │ │ │ │ └── Detector.java │ │ │ │ │ └── encoder/ │ │ │ │ │ ├── BarcodeMatrix.java │ │ │ │ │ ├── BarcodeRow.java │ │ │ │ │ ├── Compaction.java │ │ │ │ │ ├── Dimensions.java │ │ │ │ │ ├── PDF417.java │ │ │ │ │ ├── PDF417ErrorCorrection.java │ │ │ │ │ ├── PDF417HighLevelEncoder.java │ │ │ │ │ └── PDF417Writer.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 │ │ │ ├── README.md │ │ │ ├── com/ │ │ │ │ └── phonegap/ │ │ │ │ └── plugins/ │ │ │ │ └── barcodescanner/ │ │ │ │ └── BarcodeScanner.java │ │ │ └── com.google.zxing.client.android.captureactivity.jar │ │ ├── browser/ │ │ │ └── BarcodeScannerProxy.js │ │ ├── ios/ │ │ │ ├── CDVBarcodeScanner.bundle/ │ │ │ │ └── beep.caf │ │ │ ├── CDVBarcodeScanner.mm │ │ │ ├── scannerOverlay.xib │ │ │ ├── zxing-all-in-one.cpp │ │ │ └── zxing-all-in-one.h │ │ ├── windows/ │ │ │ ├── BarcodeScannerProxy.js │ │ │ └── lib/ │ │ │ ├── Properties/ │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── Reader.cs │ │ │ ├── WinRTBarcodeReader.csproj │ │ │ └── ZXing.winmd │ │ └── wp8/ │ │ ├── BarcodeScanner.cs │ │ ├── BarcodeScannerTask.cs │ │ ├── BarcodeScannerUI.xaml │ │ └── BarcodeScannerUI.xaml.cs │ ├── tests/ │ │ ├── plugin.xml │ │ └── tests.js │ └── www/ │ └── barcodescanner.js └── src/ ├── css/ │ ├── android.less │ ├── app.less │ ├── components/ │ │ ├── FeedbackModal.less │ │ ├── Footerbar.less │ │ ├── Headerbar.less │ │ ├── ListItem.less │ │ ├── NavigationBar.less │ │ ├── PersonItem.less │ │ ├── ScheduleItem.less │ │ └── index.less │ ├── demo.less │ ├── ionicons/ │ │ ├── _ionicons-font.less │ │ ├── _ionicons-icons.less │ │ ├── _ionicons-variables.less │ │ └── ionicons.less │ ├── mixins.less │ ├── variables.less │ └── views/ │ ├── about.less │ ├── announcement.less │ ├── details.less │ ├── event.less │ ├── index.less │ ├── misc.less │ ├── onboarding.less │ ├── person.less │ ├── schedule.less │ └── talk.less ├── index.html └── js/ ├── app.js ├── components/ │ ├── AppHeader.js │ ├── FeedbackModal.js │ ├── ListHeader.js │ ├── Onboarding/ │ │ ├── enter-code.js │ │ ├── index.js │ │ └── resend-email.js │ ├── OnboardingHeader.js │ ├── PeopleItem.js │ ├── PeopleList.js │ ├── Scanner.js │ └── Spinner.js ├── config.js ├── icons/ │ ├── index.js │ └── qr.js ├── lib/ │ └── device.js ├── mixins/ │ └── social.js ├── stores/ │ ├── DataStore.js │ ├── default.json │ └── default.secret.json ├── touchstone/ │ ├── Container.js │ ├── ErrorView.js │ ├── Icon.js │ ├── LabelInput.js │ ├── LabelTextarea.js │ ├── Link.js │ ├── NavigationBar.js │ ├── Switch.js │ ├── Tabs.js │ ├── Transitions.js │ ├── View.js │ ├── ViewManager.js │ ├── animation.js │ └── index.js └── views/ ├── about.js ├── announcement.js ├── event/ │ ├── index.js │ └── sponsor.js ├── me/ │ ├── edit.js │ ├── index.js │ └── section.js ├── onboarding/ │ ├── hackathon/ │ │ ├── enter-code.js │ │ ├── index.js │ │ └── resend-email.js │ ├── main-event/ │ │ ├── enter-code.js │ │ ├── index.js │ │ └── resend-email.js │ └── workshop/ │ ├── enter-code.js │ ├── index.js │ └── resend-email.js ├── people/ │ ├── index.js │ ├── person.js │ └── search.js └── schedule/ ├── index.js ├── item.js └── talk.js