├── outsystems-app-android ├── AndroidUniversalImageLoaderLib │ ├── res │ │ ├── layout │ │ │ └── .gitkeep │ │ ├── values │ │ │ └── .gitkeep │ │ ├── drawable-hdpi │ │ │ └── .gitkeep │ │ ├── drawable-ldpi │ │ │ └── .gitkeep │ │ ├── drawable-mdpi │ │ │ └── .gitkeep │ │ └── drawable-xhdpi │ │ │ └── .gitkeep │ ├── .settings │ │ └── org.eclipse.jdt.core.prefs │ ├── src │ │ └── com │ │ │ └── nostra13 │ │ │ └── universalimageloader │ │ │ └── core │ │ │ └── assist │ │ │ ├── LoadedFrom.java │ │ │ └── FlushedInputStream.java │ ├── AndroidManifest.xml │ ├── project.properties │ ├── test-gen │ │ └── com │ │ │ └── nostra13 │ │ │ └── universalimageloader │ │ │ └── R.java │ ├── .classpath │ └── .project ├── Outsystems │ ├── platforms │ │ ├── android │ │ │ ├── CordovaLib │ │ │ │ ├── res │ │ │ │ │ ├── layout │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── values │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── drawable-ldpi │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ ├── drawable-mdpi │ │ │ │ │ │ └── .gitkeep │ │ │ │ │ └── drawable-xhdpi │ │ │ │ │ │ └── .gitkeep │ │ │ │ ├── .settings │ │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ │ ├── .classpath │ │ │ │ ├── project.properties │ │ │ │ ├── proguard-project.txt │ │ │ │ └── .project │ │ │ ├── cordova │ │ │ │ ├── node_modules │ │ │ │ │ ├── .bin │ │ │ │ │ │ └── shjs │ │ │ │ │ ├── shelljs │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ ├── popd.js │ │ │ │ │ │ │ ├── pushd.js │ │ │ │ │ │ │ ├── pwd.js │ │ │ │ │ │ │ ├── error.js │ │ │ │ │ │ │ ├── cd.js │ │ │ │ │ │ │ ├── echo.js │ │ │ │ │ │ │ ├── toEnd.js │ │ │ │ │ │ │ └── to.js │ │ │ │ │ │ ├── .travis.yml │ │ │ │ │ │ ├── .documentup.json │ │ │ │ │ │ ├── global.js │ │ │ │ │ │ ├── .jshintrc │ │ │ │ │ │ └── scripts │ │ │ │ │ │ │ └── generate-docs.js │ │ │ │ │ ├── which │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ └── package.json │ │ │ │ │ └── q │ │ │ │ │ │ └── queue.js │ │ │ │ ├── version │ │ │ │ ├── log.bat │ │ │ │ ├── run.bat │ │ │ │ ├── build.bat │ │ │ │ └── clean.bat │ │ │ ├── gradle.properties │ │ │ ├── res │ │ │ │ ├── anim │ │ │ │ │ ├── cycle_7.xml │ │ │ │ │ ├── shake.xml │ │ │ │ │ ├── fadeout.xml │ │ │ │ │ ├── slide_in_top.xml │ │ │ │ │ ├── slide_out_bottom.xml │ │ │ │ │ ├── activity_open_exit.xml │ │ │ │ │ ├── activity_close_enter.xml │ │ │ │ │ ├── activity_close_exit.xml │ │ │ │ │ └── activity_open_enter.xml │ │ │ │ ├── values-sw600dp │ │ │ │ │ └── dimens.xml │ │ │ │ ├── raw │ │ │ │ │ ├── beep.ogg │ │ │ │ │ └── appsettings.json │ │ │ │ ├── values │ │ │ │ │ ├── integers.xml │ │ │ │ │ ├── dimens.xml │ │ │ │ │ ├── attrs.xml │ │ │ │ │ ├── arrays.xml │ │ │ │ │ └── ids.xml │ │ │ │ ├── values-land │ │ │ │ │ └── integers.xml │ │ │ │ ├── values-port │ │ │ │ │ └── integers.xml │ │ │ │ ├── drawable-hdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── launcher_icon.png │ │ │ │ │ └── shopper_icon.png │ │ │ │ ├── drawable-ldpi │ │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── offline.png │ │ │ │ │ ├── icon_apps.png │ │ │ │ │ ├── icon_app_list.png │ │ │ │ │ ├── network_error.png │ │ │ │ │ ├── icon_chevron_back.png │ │ │ │ │ ├── icon_chevron_forth.png │ │ │ │ │ ├── icon_chevron_left.png │ │ │ │ │ ├── icon_chevron_right.png │ │ │ │ │ ├── icon_speech_bubble.png │ │ │ │ │ └── icon_chevron_right_inactive.png │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ ├── icon.png │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── offline.png │ │ │ │ │ ├── icon_apps.png │ │ │ │ │ ├── icon_app_list.png │ │ │ │ │ ├── launcher_icon.png │ │ │ │ │ ├── network_error.png │ │ │ │ │ ├── icon_chevron_back.png │ │ │ │ │ ├── icon_chevron_left.png │ │ │ │ │ ├── icon_chevron_forth.png │ │ │ │ │ ├── icon_chevron_right.png │ │ │ │ │ ├── icon_speech_bubble.png │ │ │ │ │ └── icon_chevron_right_inactive.png │ │ │ │ ├── drawable │ │ │ │ │ ├── icon_close.png │ │ │ │ │ ├── icon_help.png │ │ │ │ │ ├── launcher_icon.png │ │ │ │ │ ├── no_app_image.png │ │ │ │ │ ├── shopper_icon.png │ │ │ │ │ ├── share_via_barcode.png │ │ │ │ │ ├── item_border.xml │ │ │ │ │ ├── actionbar_background_selector.xml │ │ │ │ │ ├── edit_text_background.xml │ │ │ │ │ ├── item_border_selected.xml │ │ │ │ │ ├── background_loading_web_application.xml │ │ │ │ │ ├── button_text_selector.xml │ │ │ │ │ ├── button_selector.xml │ │ │ │ │ ├── list_selector.xml │ │ │ │ │ ├── button_background.xml │ │ │ │ │ ├── background_images_aplications.xml │ │ │ │ │ └── os_progress_bar.xml │ │ │ │ ├── drawable-sw600dp │ │ │ │ │ ├── logo.png │ │ │ │ │ ├── icon_apps.png │ │ │ │ │ ├── icon_close.png │ │ │ │ │ ├── icon_help.png │ │ │ │ │ ├── icon_app_list.png │ │ │ │ │ ├── network_error.png │ │ │ │ │ ├── icon_chevron_left.png │ │ │ │ │ ├── icon_chevron_right.png │ │ │ │ │ ├── icon_speech_bubble.png │ │ │ │ │ ├── icon_chevron_right_inactive.png │ │ │ │ │ ├── item_border.xml │ │ │ │ │ └── item_border_selected.xml │ │ │ │ ├── drawable-land-mdpi │ │ │ │ │ └── bg_red.jpg │ │ │ │ ├── drawable-port-mdpi │ │ │ │ │ └── bg_red.jpg │ │ │ │ ├── drawable-land-xhdpi │ │ │ │ │ └── bg_red.jpg │ │ │ │ ├── drawable-port-xhdpi │ │ │ │ │ └── bg_red.jpg │ │ │ │ ├── drawable-sw600dp-land │ │ │ │ │ └── bg_red.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ └── launcher_icon.png │ │ │ │ ├── layout │ │ │ │ │ ├── activity_splashscreen.xml │ │ │ │ │ ├── history_list_item.xml │ │ │ │ │ └── search_book_contents_header.xml │ │ │ │ ├── layout-sw600dp │ │ │ │ │ └── activity_splashscreen.xml │ │ │ │ └── menu │ │ │ │ │ ├── capture.xml │ │ │ │ │ └── encode.xml │ │ │ ├── settings.gradle │ │ │ ├── libs │ │ │ │ ├── Pushwoosh.jar │ │ │ │ ├── gson-2.2.4.jar │ │ │ │ ├── picasso-2.3.2.jar │ │ │ │ ├── sqlite-connector.jar │ │ │ │ ├── android-async-http-1.4.5.jar │ │ │ │ ├── x86 │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ ├── armeabi │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ ├── x86_64 │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ ├── armeabi-v7a │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ └── com.google.zxing.client.android.captureactivity.jar │ │ │ ├── assets │ │ │ │ ├── www │ │ │ │ │ ├── img │ │ │ │ │ │ └── logo.png │ │ │ │ │ └── plugins │ │ │ │ │ │ ├── cordova-plugin-sim │ │ │ │ │ │ └── www │ │ │ │ │ │ │ └── sim.js │ │ │ │ │ │ ├── com.outsystems.plugins.FileChooser │ │ │ │ │ │ └── www │ │ │ │ │ │ │ └── FileChooser.js │ │ │ │ │ │ └── cordova-plugin-file │ │ │ │ │ │ └── www │ │ │ │ │ │ └── LocalFileSystem.js │ │ │ │ ├── _where-is-www.txt │ │ │ │ └── fonts │ │ │ │ │ ├── OpenSans-Bold.ttf │ │ │ │ │ ├── OpenSans-Light.ttf │ │ │ │ │ └── OpenSans-Regular.ttf │ │ │ ├── src │ │ │ │ └── com │ │ │ │ │ └── outsystems │ │ │ │ │ └── android │ │ │ │ │ ├── TestActivity.java │ │ │ │ │ ├── core │ │ │ │ │ ├── WSRequestHandler.java │ │ │ │ │ └── parsing │ │ │ │ │ │ ├── ParsingTaskMethods.java │ │ │ │ │ │ └── GenericResponseParsingTask.java │ │ │ │ │ └── model │ │ │ │ │ ├── MobileECT.java │ │ │ │ │ ├── DLOperationType.java │ │ │ │ │ └── Infrastructure.java │ │ │ ├── platform_www │ │ │ │ └── plugins │ │ │ │ │ ├── cordova-plugin-sim │ │ │ │ │ └── www │ │ │ │ │ │ └── sim.js │ │ │ │ │ ├── com.outsystems.plugins.FileChooser │ │ │ │ │ └── www │ │ │ │ │ │ └── FileChooser.js │ │ │ │ │ └── cordova-plugin-file │ │ │ │ │ └── www │ │ │ │ │ └── LocalFileSystem.js │ │ │ ├── .classpath │ │ │ ├── .settings │ │ │ │ └── org.eclipse.jdt.core.prefs │ │ │ ├── project.properties │ │ │ ├── proguard-project.txt │ │ │ └── .gitignore │ │ └── platforms.json │ ├── plugins │ │ ├── cordova-plugin-camera │ │ │ ├── tests │ │ │ │ └── ios │ │ │ │ │ ├── .npmignore │ │ │ │ │ ├── CDVCameraTest.xcworkspace │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ ├── CDVCameraTest │ │ │ │ │ └── CDVCameraTest.xcodeproj │ │ │ │ │ │ └── project.xcworkspace │ │ │ │ │ │ └── contents.xcworkspacedata │ │ │ │ │ └── package.json │ │ │ ├── doc │ │ │ │ └── img │ │ │ │ │ ├── ios-fail.png │ │ │ │ │ ├── wp8-fail.png │ │ │ │ │ ├── fireos-fail.png │ │ │ │ │ ├── ios-success.png │ │ │ │ │ ├── ubuntu-fail.png │ │ │ │ │ ├── wp8-success.png │ │ │ │ │ ├── android-fail.png │ │ │ │ │ ├── browser-fail.png │ │ │ │ │ ├── firefox-fail.png │ │ │ │ │ ├── fireos-success.png │ │ │ │ │ ├── ubuntu-success.png │ │ │ │ │ ├── windows-fail.png │ │ │ │ │ ├── android-success.png │ │ │ │ │ ├── blackberry-fail.png │ │ │ │ │ ├── browser-success.png │ │ │ │ │ ├── firefox-success.png │ │ │ │ │ ├── windows-success.png │ │ │ │ │ └── blackberry-success.png │ │ │ ├── src │ │ │ │ └── ubuntu │ │ │ │ │ ├── back.png │ │ │ │ │ ├── shoot.png │ │ │ │ │ ├── toolbar-left.png │ │ │ │ │ ├── toolbar-right.png │ │ │ │ │ └── toolbar-middle.png │ │ │ └── NOTICE │ │ ├── com.phonegap.plugins.barcodescanner │ │ │ ├── src │ │ │ │ ├── android │ │ │ │ │ ├── LibraryProject │ │ │ │ │ │ ├── .npmignore │ │ │ │ │ │ ├── res │ │ │ │ │ │ │ ├── values │ │ │ │ │ │ │ │ ├── dimens.xml │ │ │ │ │ │ │ │ ├── arrays.xml │ │ │ │ │ │ │ │ └── ids.xml │ │ │ │ │ │ │ ├── raw │ │ │ │ │ │ │ │ └── beep.ogg │ │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ │ │ ├── launcher_icon.png │ │ │ │ │ │ │ │ ├── shopper_icon.png │ │ │ │ │ │ │ │ └── share_via_barcode.png │ │ │ │ │ │ │ ├── drawable-hdpi │ │ │ │ │ │ │ │ ├── launcher_icon.png │ │ │ │ │ │ │ │ └── shopper_icon.png │ │ │ │ │ │ │ ├── drawable-xhdpi │ │ │ │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ │ │ ├── drawable-xxhdpi │ │ │ │ │ │ │ │ └── launcher_icon.png │ │ │ │ │ │ │ ├── menu │ │ │ │ │ │ │ │ ├── capture.xml │ │ │ │ │ │ │ │ └── encode.xml │ │ │ │ │ │ │ └── layout │ │ │ │ │ │ │ │ └── history_list_item.xml │ │ │ │ │ │ ├── assets │ │ │ │ │ │ │ ├── style.css │ │ │ │ │ │ │ ├── images │ │ │ │ │ │ │ │ ├── big-1d.png │ │ │ │ │ │ │ │ ├── big-qr.png │ │ │ │ │ │ │ │ ├── demo-no.png │ │ │ │ │ │ │ │ ├── demo-yes.png │ │ │ │ │ │ │ │ ├── scan-example.png │ │ │ │ │ │ │ │ ├── big-datamatrix.png │ │ │ │ │ │ │ │ ├── scan-from-phone.png │ │ │ │ │ │ │ │ ├── contact-results-screen.jpg │ │ │ │ │ │ │ │ └── search-book-contents.jpg │ │ │ │ │ │ │ ├── html-zh-rCN │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── html-zh-rTW │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── html-ja │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ │ │ ├── about2d.html │ │ │ │ │ │ │ │ └── index.html │ │ │ │ │ │ │ ├── html-ko │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ │ │ ├── sharing.html │ │ │ │ │ │ │ │ ├── scanning.html │ │ │ │ │ │ │ │ ├── index.html │ │ │ │ │ │ │ │ └── about2d.html │ │ │ │ │ │ │ ├── html-en │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ │ │ └── sharing.html │ │ │ │ │ │ │ ├── html-de │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ └── about1d.html │ │ │ │ │ │ │ ├── html-ru │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ ├── about1d.html │ │ │ │ │ │ │ │ └── sharing.html │ │ │ │ │ │ │ ├── html-nl │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ └── about1d.html │ │ │ │ │ │ │ ├── html-pt │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ └── about1d.html │ │ │ │ │ │ │ ├── html-it │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ └── about1d.html │ │ │ │ │ │ │ ├── html-es │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ └── about1d.html │ │ │ │ │ │ │ └── html-fr │ │ │ │ │ │ │ │ ├── whatsnew.html │ │ │ │ │ │ │ │ └── about1d.html │ │ │ │ │ │ ├── .classpath │ │ │ │ │ │ ├── project.properties │ │ │ │ │ │ ├── src │ │ │ │ │ │ │ └── com │ │ │ │ │ │ │ │ └── google │ │ │ │ │ │ │ │ └── zxing │ │ │ │ │ │ │ │ ├── pdf417 │ │ │ │ │ │ │ │ └── encoder │ │ │ │ │ │ │ │ │ └── Compaction.java │ │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ └── android │ │ │ │ │ │ │ │ │ ├── IntentSource.java │ │ │ │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ │ │ └── executor │ │ │ │ │ │ │ │ │ │ └── AsyncTaskExecInterface.java │ │ │ │ │ │ │ │ │ └── encode │ │ │ │ │ │ │ │ │ └── Formatter.java │ │ │ │ │ │ │ │ ├── FakeR.java │ │ │ │ │ │ │ │ └── ResultPointCallback.java │ │ │ │ │ │ ├── ant.properties │ │ │ │ │ │ └── .project │ │ │ │ │ └── com.google.zxing.client.android.captureactivity.jar │ │ │ │ └── windows8 │ │ │ │ │ └── lib │ │ │ │ │ ├── ZXing.winmd │ │ │ │ │ └── WinRTBarcodeReader.winmd │ │ │ ├── .fetch.json │ │ │ ├── package.json │ │ │ └── spec │ │ │ │ └── html │ │ │ │ └── SuiteView.js │ │ ├── cordova-sqlite-storage │ │ │ ├── src │ │ │ │ ├── windows │ │ │ │ │ └── SQLite3-WinRT │ │ │ │ │ │ └── SQLite3 │ │ │ │ │ │ ├── pch.cpp │ │ │ │ │ │ ├── Constants.cpp │ │ │ │ │ │ ├── pch.h │ │ │ │ │ │ ├── Database.h │ │ │ │ │ │ └── Statement.h │ │ │ │ ├── external │ │ │ │ │ └── .npmignore │ │ │ │ └── android │ │ │ │ │ └── libs │ │ │ │ │ ├── sqlite-connector.jar │ │ │ │ │ ├── x86 │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ │ ├── armeabi │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ │ ├── x86_64 │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ │ ├── arm64-v8a │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ │ │ └── armeabi-v7a │ │ │ │ │ └── libsqlc-native-driver.so │ │ │ ├── spec │ │ │ │ ├── platforms │ │ │ │ │ └── .npmignore │ │ │ │ ├── plugins │ │ │ │ │ └── .npmignore │ │ │ │ ├── .cordova │ │ │ │ │ └── config.json │ │ │ │ ├── www │ │ │ │ │ └── lib │ │ │ │ │ │ └── jasmine-2.2.0 │ │ │ │ │ │ └── jasmine_favicon.png │ │ │ │ └── config.xml │ │ │ ├── tests │ │ │ │ └── plugin.xml │ │ │ ├── circle.yml │ │ │ └── package.json │ │ ├── cordova-plugin-battery-status │ │ │ ├── src │ │ │ │ └── windows │ │ │ │ │ ├── BatteryStatus │ │ │ │ │ └── BatteryStatus │ │ │ │ │ │ └── .npmignore │ │ │ │ │ └── BatteryStatus.winmd │ │ │ ├── NOTICE │ │ │ └── package.json │ │ ├── cordova-plugin-calendar │ │ │ ├── demo │ │ │ │ ├── setup.sh │ │ │ │ └── www │ │ │ │ │ └── img │ │ │ │ │ └── logo.png │ │ │ ├── atlassian-ide-plugin.xml │ │ │ └── package.json │ │ ├── cordova-plugin-dialogs │ │ │ ├── www │ │ │ │ ├── firefoxos │ │ │ │ │ ├── danger.png │ │ │ │ │ ├── default.png │ │ │ │ │ ├── pattern.png │ │ │ │ │ ├── gradient.png │ │ │ │ │ ├── recommend.png │ │ │ │ │ └── danger-press.png │ │ │ │ └── blackberry10 │ │ │ │ │ └── notification-beep.wav │ │ │ ├── NOTICE │ │ │ ├── src │ │ │ │ ├── wp │ │ │ │ │ └── notification-beep.wav │ │ │ │ └── ios │ │ │ │ │ └── CDVNotification.bundle │ │ │ │ │ └── beep.wav │ │ │ └── package.json │ │ ├── cordova-plugin-device │ │ │ ├── NOTICE │ │ │ └── src │ │ │ │ └── ios │ │ │ │ └── CDVDevice.h │ │ ├── cordova-plugin-file │ │ │ ├── NOTICE │ │ │ ├── www │ │ │ │ ├── LocalFileSystem.js │ │ │ │ └── fileSystems.js │ │ │ └── package.json │ │ ├── cordova-plugin-console │ │ │ ├── NOTICE │ │ │ ├── package.json │ │ │ └── src │ │ │ │ ├── ios │ │ │ │ └── CDVLogger.h │ │ │ │ └── ubuntu │ │ │ │ └── console.cpp │ │ ├── cordova-plugin-geolocation │ │ │ ├── NOTICE │ │ │ └── package.json │ │ ├── cordova-plugin-whitelist │ │ │ ├── NOTICE │ │ │ └── package.json │ │ ├── cordova-plugin-contacts │ │ │ ├── NOTICE │ │ │ └── package.json │ │ ├── cordova-plugin-sim │ │ │ ├── src │ │ │ │ └── ios │ │ │ │ │ └── Sim.h │ │ │ └── www │ │ │ │ └── sim.js │ │ ├── phonegap-plugin-barcodescanner │ │ │ └── src │ │ │ │ └── blackberry10 │ │ │ │ └── native │ │ │ │ ├── device │ │ │ │ └── libBarcodeScanner.so │ │ │ │ └── simulator │ │ │ │ └── libBarcodeScanner.so │ │ ├── cordova-plugin-network-information │ │ │ └── NOTICE │ │ └── com.outsystems.plugins.FileChooser │ │ │ └── www │ │ │ └── FileChooser.js │ ├── www │ │ └── img │ │ │ └── logo.png │ └── config.xml ├── MobileECT │ ├── build.gradle │ └── MobileECT.aar ├── sandbucket.jpg ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── settings.gradle ├── sample.html ├── build.gradle ├── .gitignore └── outsystems-app-android.iml ├── images ├── androidstudio3.png ├── androidDeepLinks.png ├── androidstudio_gradle.png ├── androidstudio_rename.png ├── androidstudio_strings.png ├── androidstudio_manifest.png └── androidstudio_openproject.png ├── .gitignore └── MIT-LICENSE.txt /outsystems-app-android/AndroidUniversalImageLoaderLib/res/layout/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/res/drawable-hdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/res/drawable-ldpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/res/drawable-mdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/res/drawable-xhdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/res/layout/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/res/values/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/res/drawable-hdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/res/drawable-ldpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/res/drawable-mdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/res/drawable-xhdpi/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/platforms.json: -------------------------------------------------------------------------------- 1 | { 2 | "android": "4.1.1" 3 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/tests/ios/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/.bin/shjs: -------------------------------------------------------------------------------- 1 | ../shelljs/bin/shjs -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/.npmignore: -------------------------------------------------------------------------------- 1 | test/ 2 | tmp/ -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/popd.js: -------------------------------------------------------------------------------- 1 | // see dirs.js -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/pushd.js: -------------------------------------------------------------------------------- 1 | // see dirs.js -------------------------------------------------------------------------------- /images/androidstudio3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidstudio3.png -------------------------------------------------------------------------------- /images/androidDeepLinks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidDeepLinks.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/.npmignore: -------------------------------------------------------------------------------- 1 | /libs 2 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/windows/SQLite3-WinRT/SQLite3/pch.cpp: -------------------------------------------------------------------------------- 1 | #include "pch.h" 2 | -------------------------------------------------------------------------------- /images/androidstudio_gradle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidstudio_gradle.png -------------------------------------------------------------------------------- /images/androidstudio_rename.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidstudio_rename.png -------------------------------------------------------------------------------- /images/androidstudio_strings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidstudio_strings.png -------------------------------------------------------------------------------- /outsystems-app-android/MobileECT/build.gradle: -------------------------------------------------------------------------------- 1 | configurations.create("default") 2 | artifacts.add("default", file('MobileECT.aar')) -------------------------------------------------------------------------------- /images/androidstudio_manifest.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidstudio_manifest.png -------------------------------------------------------------------------------- /images/androidstudio_openproject.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/images/androidstudio_openproject.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/windows/SQLite3-WinRT/SQLite3/Constants.cpp: -------------------------------------------------------------------------------- 1 | #include "Constants.h" 2 | -------------------------------------------------------------------------------- /outsystems-app-android/sandbucket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/sandbucket.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-battery-status/src/windows/BatteryStatus/BatteryStatus/.npmignore: -------------------------------------------------------------------------------- 1 | /bin/ 2 | /obj/ 3 | *.suo -------------------------------------------------------------------------------- /outsystems-app-android/MobileECT/MobileECT.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/MobileECT/MobileECT.aar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/www/img/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.8" 4 | - "0.10" 5 | - "0.11" 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/gradle.properties: -------------------------------------------------------------------------------- 1 | APPLICATION_NAME= 2 | APPLICATION_ID= 3 | APPLICATION_VERSION= 4 | APPLICATION_CODE= 5 | OUTPUT_DIR= -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/.documentup.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "ShellJS", 3 | "twitter": [ 4 | "r2r" 5 | ] 6 | } 7 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/spec/platforms/.npmignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/spec/plugins/.npmignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/external/.npmignore: -------------------------------------------------------------------------------- 1 | # Ignore everything in this directory 2 | * 3 | # Except this file 4 | !.gitignore 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/windows/SQLite3-WinRT/SQLite3/pch.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include 4 | #include 5 | -------------------------------------------------------------------------------- /outsystems-app-android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/global.js: -------------------------------------------------------------------------------- 1 | var shell = require('./shell.js'); 2 | for (var cmd in shell) 3 | global[cmd] = shell[cmd]; 4 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/cycle_7.xml: -------------------------------------------------------------------------------- 1 | 3 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values-sw600dp/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 1dp 4 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/.jshintrc: -------------------------------------------------------------------------------- 1 | { 2 | "loopfunc": true, 3 | "sub": true, 4 | "undef": true, 5 | "unused": true, 6 | "node": true 7 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/settings.gradle: -------------------------------------------------------------------------------- 1 | // GENERATED FILE - DO NOT EDIT 2 | include ":" 3 | include ":CordovaLib" 4 | include ":..:..:..:AndroidUniversalImageLoaderLib" 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/spec/.cordova/config.json: -------------------------------------------------------------------------------- 1 | { 2 | "id": "com.phonegap.plugins.sqlite.tests", 3 | "name": "Cordova SQLite Plugin Test Runner" 4 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/Pushwoosh.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/Pushwoosh.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/raw/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/raw/beep.ogg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 4 | 5 | -------------------------------------------------------------------------------- /outsystems-app-android/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':MobileECT' 2 | include ':AndroidUniversalImageLoaderLib' 3 | include ':OutSystems:platforms:android' 4 | include ':OutSystems:platforms:android:CordovaLib' 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/gson-2.2.4.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/gson-2.2.4.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values-land/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 4 | 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values-port/integers.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 2 4 | 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/.fetch.json: -------------------------------------------------------------------------------- 1 | {"source":{"type":"local","path":"C:\\Users\\mlc\\.plugman\\cache\\com.phonegap.plugins.barcodescanner\\2.0.0\\package"}} -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/assets/www/img/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/picasso-2.3.2.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/picasso-2.3.2.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/sqlite-connector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/sqlite-connector.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-calendar/demo/setup.sh: -------------------------------------------------------------------------------- 1 | cordova platform add android 2 | cordova platform add ios 3 | cordova plugin add https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin 4 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable/icon_close.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/icon_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable/icon_help.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/_where-is-www.txt: -------------------------------------------------------------------------------- 1 | To show `assets/www` or `res/xml/config.xml`, go to: 2 | Project -> Properties -> Resource -> Resource Filters 3 | And delete the exclusion filter. 4 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/fonts/OpenSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/assets/fonts/OpenSans-Bold.ttf -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/offline.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/offline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/offline.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/no_app_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable/no_app_image.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/shopper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable/shopper_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/fonts/OpenSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/assets/fonts/OpenSans-Light.ttf -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/fonts/OpenSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/assets/fonts/OpenSans-Regular.ttf -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/android-async-http-1.4.5.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/android-async-http-1.4.5.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/x86/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/x86/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-land-mdpi/bg_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-land-mdpi/bg_red.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_apps.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-port-mdpi/bg_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-port-mdpi/bg_red.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_apps.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-calendar/atlassian-ide-plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ios-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ios-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/wp8-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/wp8-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/back.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/shoot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/shoot.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/shopper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-hdpi/shopper_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-land-xhdpi/bg_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-land-xhdpi/bg_red.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_app_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_app_list.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/network_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/network_error.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-port-xhdpi/bg_red.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-port-xhdpi/bg_red.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_apps.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_apps.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_close.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_help.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_help.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/share_via_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable/share_via_barcode.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-calendar/demo/www/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-calendar/demo/www/img/logo.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/fireos-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/fireos-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ios-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ios-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ubuntu-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/wp8-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/wp8-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/armeabi/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/armeabi/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/x86_64/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/x86_64/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp-land/bg_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp-land/bg_red.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_app_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_app_list.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/network_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/network_error.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_app_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_app_list.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/network_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/network_error.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/android-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/android-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/browser-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/browser-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/firefox-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/firefox-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/fireos-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/fireos-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/ubuntu-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/windows-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/windows-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/danger.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/default.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/pattern.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/arm64-v8a/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/arm64-v8a/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_back.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_forth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_forth.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_left.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_right.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_speech_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_speech_bubble.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_back.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_back.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_left.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/android-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/android-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/blackberry-fail.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/browser-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/browser-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/firefox-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/firefox-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/windows-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/windows-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/toolbar-left.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/toolbar-right.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-device/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/gradient.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/recommend.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-file/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/armeabi-v7a/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/armeabi-v7a/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_chevron_left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_chevron_left.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_chevron_right.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_speech_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_speech_bubble.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_forth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_forth.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_right.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_right.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_speech_bubble.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_speech_bubble.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/blackberry-success.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/doc/img/blackberry-success.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/src/ubuntu/toolbar-middle.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-console/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/src/wp/notification-beep.wav -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/firefoxos/danger-press.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-geolocation/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-whitelist/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-battery-status/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_right_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-mdpi/icon_chevron_right_inactive.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_right_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-xhdpi/icon_chevron_right_inactive.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/sqlite-connector.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/sqlite-connector.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_chevron_right_inactive.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/icon_chevron_right_inactive.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-battery-status/src/windows/BatteryStatus.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-battery-status/src/windows/BatteryStatus.winmd -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/src/ios/CDVNotification.bundle/beep.wav -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/www/blackberry10/notification-beep.wav -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/windows8/lib/ZXing.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/windows8/lib/ZXing.winmd -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 3 | org.eclipse.jdt.core.compiler.compliance=1.6 4 | org.eclipse.jdt.core.compiler.source=1.6 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/libs/com.google.zxing.client.android.captureactivity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/platforms/android/libs/com.google.zxing.client.android.captureactivity.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/shake.xml: -------------------------------------------------------------------------------- 1 | 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/x86/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/x86/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 8dip 4 | 4dip 5 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.2.0/jasmine_favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/spec/www/lib/jasmine-2.2.0/jasmine_favicon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/armeabi/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/armeabi/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/x86_64/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/x86_64/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | font-family:sans-serif; 3 | } 4 | ul.touchable li { 5 | padding-top:8px; 6 | padding-bottom:8px; 7 | } 8 | p.imgcenter { 9 | text-align:center; 10 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/arm64-v8a/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/arm64-v8a/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/which/README.md: -------------------------------------------------------------------------------- 1 | The "which" util from npm's guts. 2 | 3 | Finds the first instance of a specified executable in the PATH 4 | environment variable. Does not cache the results, so `hash -r` is not 5 | needed when the PATH changes. 6 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/windows8/lib/WinRTBarcodeReader.winmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/windows8/lib/WinRTBarcodeReader.winmd -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/armeabi-v7a/libsqlc-native-driver.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/android/libs/armeabi-v7a/libsqlc-native-driver.so -------------------------------------------------------------------------------- /outsystems-app-android/sample.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 |

My First File

6 | 7 |

My first paragraph. With a link and also an image: 8 | 9 |

10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/raw/beep.ogg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/raw/beep.ogg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-contacts/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | Microsoft Open Technologies, Inc. (http://msopentech.com/). -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-sim/src/ios/Sim.h: -------------------------------------------------------------------------------- 1 | #import 2 | #import 3 | #import 4 | 5 | @interface Sim : CDVPlugin 6 | 7 | - (void)getSimInfo:(CDVInvokedUrlCommand*)command; 8 | 9 | @end 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/phonegap-plugin-barcodescanner/src/blackberry10/native/device/libBarcodeScanner.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/phonegap-plugin-barcodescanner/src/blackberry10/native/device/libBarcodeScanner.so -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/TestActivity.java: -------------------------------------------------------------------------------- 1 | package com.outsystems.android; 2 | 3 | import org.apache.cordova.CordovaActivity; 4 | 5 | /** 6 | * Created by lrs on 11/27/2015. 7 | */ 8 | public class TestActivity extends CordovaActivity{ 9 | 10 | } 11 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/phonegap-plugin-barcodescanner/src/blackberry10/native/simulator/libBarcodeScanner.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/phonegap-plugin-barcodescanner/src/blackberry10/native/simulator/libBarcodeScanner.so -------------------------------------------------------------------------------- /outsystems-app-android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- 1 | #Tue Dec 23 10:40:49 GMT 2014 2 | distributionBase=GRADLE_USER_HOME 3 | distributionPath=wrapper/dists 4 | zipStoreBase=GRADLE_USER_HOME 5 | zipStorePath=wrapper/dists 6 | distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip 7 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/big-1d.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/big-1d.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/big-qr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/big-qr.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/demo-no.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/demo-no.png -------------------------------------------------------------------------------- /outsystems-app-android/build.gradle: -------------------------------------------------------------------------------- 1 | // Top-level build file where you can add configuration options common to all sub-projects/modules. 2 | buildscript { 3 | repositories { 4 | mavenCentral() 5 | } 6 | dependencies { 7 | classpath 'com.android.tools.build:gradle:1.5.0' 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/demo-yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/demo-yes.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/tests/ios/CDVCameraTest.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/scan-example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/scan-example.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable/shopper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable/shopper_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/big-datamatrix.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/big-datamatrix.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/tests/ios/CDVCameraTest/CDVCameraTest.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/scan-from-phone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/scan-from-phone.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-hdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-hdpi/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-hdpi/shopper_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-hdpi/shopper_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable/share_via_barcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable/share_via_barcode.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-xhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-xhdpi/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-xxhdpi/launcher_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/drawable-xxhdpi/launcher_icon.png -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/com.google.zxing.client.android.captureactivity.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/com.google.zxing.client.android.captureactivity.jar -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/contact-results-screen.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/contact-results-screen.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/search-book-contents.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OutSystems/OutSystemsNow-Android/HEAD/outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/images/search-book-contents.jpg -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/raw/appsettings.json: -------------------------------------------------------------------------------- 1 | { 2 | "SkipNativeLogin": false, 3 | "SkipApplicationList": false, 4 | "HideNavigationBar": false, 5 | "DefaultHostname": null, 6 | "DefaultApplicationURL": null, 7 | "BackgroundColor": null, 8 | "ForegroundColor": null, 9 | "TintColor": null 10 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/fadeout.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 9 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 90dp 5 | 6 | 8dip 7 | 4dip 8 | 1dp 9 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/src/com/nostra13/universalimageloader/core/assist/LoadedFrom.java: -------------------------------------------------------------------------------- 1 | package com.nostra13.universalimageloader.core.assist; 2 | 3 | /** 4 | * Source image loaded from. 5 | * 6 | * @author Sergey Tarasevich (nostra13[at]gmail[dot]com) 7 | */ 8 | public enum LoadedFrom { 9 | NETWORK, DISC_CACHE, MEMORY_CACHE 10 | } 11 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/pwd.js: -------------------------------------------------------------------------------- 1 | var path = require('path'); 2 | var common = require('./common'); 3 | 4 | //@ 5 | //@ ### pwd() 6 | //@ Returns the current directory. 7 | function _pwd(options) { 8 | var pwd = path.resolve(process.cwd()); 9 | return common.ShellString(pwd); 10 | } 11 | module.exports = _pwd; 12 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/error.js: -------------------------------------------------------------------------------- 1 | var common = require('./common'); 2 | 3 | //@ 4 | //@ ### error() 5 | //@ Tests if error occurred in the last command. Returns `null` if no error occurred, 6 | //@ otherwise returns string explaining the error 7 | function error() { 8 | return common.state.error; 9 | }; 10 | module.exports = error; 11 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/item_border.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/actionbar_background_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/edit_text_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/item_border.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-network-information/NOTICE: -------------------------------------------------------------------------------- 1 | Apache Cordova 2 | Copyright 2012 The Apache Software Foundation 3 | 4 | This product includes software developed at 5 | The Apache Software Foundation (http://www.apache.org/). 6 | 7 | This product includes software developed by Apple Inc. License can be found in the header of the affected files. (src/ios/CDVReachability.h, src/ios/CDVReachability.m) 8 | 9 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-sim/www/sim.js: -------------------------------------------------------------------------------- 1 | var sim = { 2 | getSimInfo: function (successCallback, errorCallback) { 3 | cordova.exec(successCallback, errorCallback, 'Sim', 'getSimInfo', []); 4 | } 5 | } 6 | 7 | cordova.addConstructor(function () { 8 | if (!window.plugins) { 9 | window.plugins = {}; 10 | } 11 | 12 | window.plugins.sim = sim; 13 | return window.plugins.sim; 14 | }); 15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable-sw600dp/item_border_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 11 | 12 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/item_border_selected.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rCN/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 有什么新的条码扫描器 6 | 7 | 8 | 9 |

新的版本4.3.1:

10 |
    11 |
  • 残疾人曝光控制,它引起的问题在几个车设备
  • 12 |
  • 其他小的bug修复
  • 13 |
14 |

谷歌翻译,译。

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rTW/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 有什麼新的條碼掃描器 6 | 7 | 8 | 9 |

新的版本4.3.1:

10 |
    11 |
  • 殘疾人曝光控制,它引起的問題在幾個車設備
  • 12 |
  • 其他小的bug修復
  • 13 |
14 |

谷歌翻譯,譯。

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ja/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | バーコードスキャナの新機能 6 | 7 | 8 | 9 |

バージョン4.3.1の新機能:

10 |
    11 |
  • それはいくつかのバグのデバイスで問題が発生した露光制御を無効にして
  • 12 |
  • その他の小さなバグ修正
  • 13 |
14 |

Google翻訳で翻訳。

15 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Project target. 11 | target=android-20 12 | android.library=true 13 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ko/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 바코드 스캐너의 새로운 기능 6 | 7 | 8 | 9 |

버전 4.3.1의 새로운 기능 :

10 |
    11 |
  • 그것은 여러 버그가 장치에 문제를 야기로 노출 제어를 비활성화
  • 12 |
  • 기타 작은 버그 수정
  • 13 |
14 |

Google 번역을 통해 번역.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/tests/plugin.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | Cordova sqlite storage tests 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/test-gen/com/nostra13/universalimageloader/R.java: -------------------------------------------------------------------------------- 1 | package com.nostra13.universalimageloader; 2 | 3 | public class R 4 | { 5 | public static final class attr 6 | { 7 | } 8 | 9 | public static final class drawable 10 | { 11 | } 12 | 13 | public static final class id 14 | { 15 | } 16 | 17 | public static final class layout 18 | { 19 | } 20 | 21 | public static final class string 22 | { 23 | } 24 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/background_loading_web_application.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 13 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/slide_in_top.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/slide_out_bottom.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 8 | 9 | 13 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-en/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | What's new in Barcode Scanner 6 | 7 | 8 | 9 |

New in version 4.3.1:

10 |
    11 |
  • Disabled exposure control as it caused problems on several buggy devices
  • 12 |
  • Other small bug fixes
  • 13 |
14 | 15 | 16 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/button_text_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/button_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/list_selector.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 7 | 11 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/www/plugins/cordova-plugin-sim/www/sim.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-sim.Sim", function(require, exports, module) { var sim = { 2 | getSimInfo: function (successCallback, errorCallback) { 3 | cordova.exec(successCallback, errorCallback, 'Sim', 'getSimInfo', []); 4 | } 5 | } 6 | 7 | cordova.addConstructor(function () { 8 | if (!window.plugins) { 9 | window.plugins = {}; 10 | } 11 | 12 | window.plugins.sim = sim; 13 | return window.plugins.sim; 14 | }); 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/platform_www/plugins/cordova-plugin-sim/www/sim.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-sim.Sim", function(require, exports, module) { var sim = { 2 | getSimInfo: function (successCallback, errorCallback) { 3 | cordova.exec(successCallback, errorCallback, 'Sim', 'getSimInfo', []); 4 | } 5 | } 6 | 7 | cordova.addConstructor(function () { 8 | if (!window.plugins) { 9 | window.plugins = {}; 10 | } 11 | 12 | window.plugins.sim = sim; 13 | return window.plugins.sim; 14 | }); 15 | 16 | }); 17 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/core/WSRequestHandler.java: -------------------------------------------------------------------------------- 1 | /* 2 | * OutSystems Project 3 | * 4 | * Copyright (C) 2014 OutSystems. 5 | * 6 | * This software is proprietary. 7 | */ 8 | package com.outsystems.android.core; 9 | /** 10 | * Class description. 11 | * 12 | * @author vmfo 13 | * @version $Revision: 666 $ 14 | * 15 | */ 16 | public abstract class WSRequestHandler { 17 | 18 | public abstract void requestFinish(Object result, boolean error, int statusCode); 19 | 20 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-camera/tests/ios/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-camera-test-ios", 3 | "version": "1.0.0", 4 | "description": "iOS Unit Tests for Camera Plugin", 5 | "author": "Apache Software Foundation", 6 | "license": "Apache Version 2.0", 7 | "dependencies": { 8 | "cordova-ios": "^3.7.0" 9 | }, 10 | "scripts": { 11 | "test": "xcodebuild -scheme CordovaLib && xcodebuild test -scheme CDVCameraLibTests -destination 'platform=iOS Simulator,name=iPhone 5'" 12 | } 13 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-de/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Neues in dieser Version von Barcode Scanner 6 | 7 | 8 | 9 |

Neu in der Version 4.3.1:

10 |
    11 |
  • Belichtungssteuerung deaktivierbar, wenn diese auf Ihrem Gerät Probleme verursacht
  • 12 |
  • Einige weitere kleine Fehler behoben
  • 13 |
14 | 15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/button_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 15 | 16 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ru/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Что нового в Barcode Scanner 6 | 7 | 8 | 9 |

Новое в версии 4.3.1:

10 |
    11 |
  • Отключен контроль экспозиции, как это вызвало проблемы на нескольких устройствах багги
  • 12 |
  • Другие мелкие исправления ошибка
  • 13 |
14 |

Перевод Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/.classpath: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-nl/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Wat is nieuw in Barcode Scanner 6 | 7 | 8 | 9 |

Nieuw in versie 4.3.1:

10 |
    11 |
  • Uitgeschakeld blootstelling beheersing als het veroorzaakt problemen op meerdere buggy apparaten
  • 12 |
  • Andere kleine bugfixes
  • 13 |
14 |

Vertaald door Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/cd.js: -------------------------------------------------------------------------------- 1 | var fs = require('fs'); 2 | var common = require('./common'); 3 | 4 | //@ 5 | //@ ### cd('dir') 6 | //@ Changes to directory `dir` for the duration of the script 7 | function _cd(options, dir) { 8 | if (!dir) 9 | common.error('directory not specified'); 10 | 11 | if (!fs.existsSync(dir)) 12 | common.error('no such file or directory: ' + dir); 13 | 14 | if (!fs.statSync(dir).isDirectory()) 15 | common.error('not a directory: ' + dir); 16 | 17 | process.chdir(dir); 18 | } 19 | module.exports = _cd; 20 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-pt/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | O que há de novo no Barcode Scanner 6 | 7 | 8 | 9 |

Novo na versão 4.3.1:

10 |
    11 |
  • Desativado controle de exposição, uma vez que causou problemas em dispositivos de buggy vários
  • 12 |
  • Outras pequenas correções de bugs
  • 13 |
14 |

Traduzido pelo Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-it/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Cosa c'è di nuovo nella Barcode Scanner 6 | 7 | 8 | 9 |

Nuovo nella versione 4.3.1:

10 |
    11 |
  • Disabilitato il controllo dell'esposizione, ha causato problemi su dispositivi diversi buggy
  • 12 |
  • Altre correzioni di bug piccoli
  • 13 |
14 |

Tradotto da Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/activity_open_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 9 | 10 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/windows/SQLite3-WinRT/SQLite3/Database.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "sqlite3.h" 4 | 5 | namespace SQLite3 6 | { 7 | ref class Statement; 8 | 9 | public ref class Database sealed 10 | { 11 | public: 12 | Database(Platform::String^ dbPath); 13 | virtual ~Database(); 14 | 15 | int closedb(); 16 | int close_v2(); 17 | 18 | Statement^ Prepare(Platform::String^ sql); 19 | 20 | int LastInsertRowid(); 21 | int TotalChanges(); 22 | 23 | private: 24 | friend Statement; 25 | 26 | sqlite3* sqlite; 27 | }; 28 | } 29 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-es/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ¿Qué hay de nuevo en Barcode Scanner 6 | 7 | 8 | 9 |

Nuevo en la versión 4.3.1:

10 |
    11 |
  • Desactivado el control de exposición ya que causó problemas en los dispositivos con errores varios
  • 12 |
  • Otras pequeñas correcciones de errores
  • 13 |
14 |

Traducido por Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-fr/whatsnew.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Quoi de neuf dans Barcode Scanner 6 | 7 | 8 | 9 |

Nouveau dans la version 4.3.1:

10 |
    11 |
  • Désactivé contrôle de l'exposition que cela causait des problèmes sur les appareils de buggy plusieurs
  • 12 |
  • D'autres petites corrections de bugs
  • 13 |
14 |

Traduit par Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/echo.js: -------------------------------------------------------------------------------- 1 | var common = require('./common'); 2 | 3 | //@ 4 | //@ ### echo(string [,string ...]) 5 | //@ 6 | //@ Examples: 7 | //@ 8 | //@ ```javascript 9 | //@ echo('hello world'); 10 | //@ var str = echo('hello world'); 11 | //@ ``` 12 | //@ 13 | //@ Prints string to stdout, and returns string with additional utility methods 14 | //@ like `.to()`. 15 | function _echo() { 16 | var messages = [].slice.call(arguments, 0); 17 | console.log.apply(this, messages); 18 | return common.ShellString(messages.join(' ')); 19 | } 20 | module.exports = _echo; 21 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/background_images_aplications.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 17 | 18 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/spec/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | Cordova SQLite Plugin Test Runner 5 | 6 | Runs the unit tests suite for the Cordova SQLite plugin. 7 | 8 | 9 | Nolan Lawson 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system use, 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | 10 | # Indicates whether an apk should be generated for each density. 11 | split.density=false 12 | # Project target. 13 | target=android-22 14 | apk-configurations= 15 | renderscript.opt.level=O0 16 | android.library=true 17 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/activity_close_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/activity_close_exit.xml: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | 10 | 11 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/core/parsing/ParsingTaskMethods.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Outsystems Project 3 | * 4 | * Copyright (C) 2014 Outsystems. 5 | * 6 | * This software is proprietary. 7 | */ 8 | package com.outsystems.android.core.parsing; 9 | /** 10 | * Class description. 11 | * 12 | * @author vmfo 13 | * @version $Revision: 666 $ 14 | * 15 | */ 16 | public interface ParsingTaskMethods { 17 | 18 | // return the parsed object 19 | public Object parsingMethod(); 20 | 21 | // receives the parsed object 22 | public void parsingFinishMethod(Object result); 23 | 24 | } 25 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rCN/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 关于一维条码 6 | 7 | 8 | 9 |

传统的条形码,如产品包装上印刷,也被称为一维条形码。常用的有几种类型,包括UPC和EAN。大多数看起来像这样:

10 |

11 |

这些一维条码包含一个独特的代码,它通常描述了一种产品,如CD或一本书。你可以看一下这段代码,在互联网上找到价格,评论等。

12 |

如果扫描一本书,你也可以为一个词或短语搜索本书的内容,它出现的地方找到的所有网页:

13 |

14 |

谷歌翻译,译。

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rTW/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 關於一維條碼 6 | 7 | 8 | 9 |

傳統的條形碼,如產品包裝上印刷,也被稱為一維條形碼。常用的有幾種類型,包括UPC和EAN。大多數看起來像這樣:

10 |

11 |

這些一維條碼包含一個獨特的代碼,它通常描述了一種產品,如CD或一本書。你可以看一下這段代碼,在互聯網上找到價格,評論等。

12 |

如果掃描一本書,你也可以為一個詞或短語搜索本書的內容,它出現的地方找到的所有網頁:

13 |

14 |

谷歌翻譯,譯。

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values/attrs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/scripts/generate-docs.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../global'); 3 | 4 | echo('Appending docs to README.md'); 5 | 6 | cd(__dirname + '/..'); 7 | 8 | // Extract docs from shell.js 9 | var docs = grep('//@', 'shell.js'); 10 | 11 | docs = docs.replace(/\/\/\@include (.+)/g, function(match, path) { 12 | var file = path.match('.js$') ? path : path+'.js'; 13 | return grep('//@', file); 14 | }); 15 | 16 | // Remove '//@' 17 | docs = docs.replace(/\/\/\@ ?/g, ''); 18 | // Append docs to README 19 | sed('-i', /## Command reference(.|\n)*/, '## Command reference\n\n' + docs, 'README.md'); 20 | 21 | echo('All done.'); 22 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/.settings/org.eclipse.jdt.core.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled 3 | org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 4 | org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve 5 | org.eclipse.jdt.core.compiler.compliance=1.6 6 | org.eclipse.jdt.core.compiler.debug.lineNumber=generate 7 | org.eclipse.jdt.core.compiler.debug.localVariable=generate 8 | org.eclipse.jdt.core.compiler.debug.sourceFile=generate 9 | org.eclipse.jdt.core.compiler.problem.assertIdentifier=error 10 | org.eclipse.jdt.core.compiler.problem.enumIdentifier=error 11 | org.eclipse.jdt.core.compiler.source=1.6 12 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/model/MobileECT.java: -------------------------------------------------------------------------------- 1 | package com.outsystems.android.model; 2 | 3 | import java.io.Serializable; 4 | 5 | /** 6 | * Created by lrs on 27-11-2014. 7 | */ 8 | public class MobileECT implements Serializable { 9 | 10 | private static final long serialVersionUID = 1L; 11 | 12 | private boolean isFirstLoad; 13 | 14 | public MobileECT(){ 15 | super(); 16 | this.isFirstLoad = true; 17 | } 18 | 19 | public boolean isFirstLoad() { 20 | return isFirstLoad; 21 | } 22 | 23 | public void setFirstLoad(boolean isFirstLoad) { 24 | this.isFirstLoad = isFirstLoad; 25 | } 26 | } 27 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | # Project target. 13 | target=android-22 14 | android.library.reference.1=CordovaLib 15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/anim/activity_open_enter.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 10 | 11 | 19 | 20 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rCN/sharing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 如何创建QR码 6 | 7 | 8 | 9 |

除了扫描二维条码,条码扫描仪还可以产生一个QR码,并将其显示在屏幕上。然后你就可以显示给朋友,让他们用自己的手机扫描条形码:

10 |

11 |

要使用此功能,请从主扫描屏幕上的菜单按钮,并点击“分享”。然后选择是否要共享联系人,书签,应用程序,或将剪贴板的内容。将自动生成的QR码。当你完成后,按返回或家庭。

12 |

要生成QR码从您的计算机,尝试的ZXing QR代码生成: http://zxing.appspot.com/generator/

13 |

谷歌翻译,译。

14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rTW/sharing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 如何創建QR碼 6 | 7 | 8 | 9 |

除了掃描二維條碼,條碼掃描儀還可以產生一個QR碼,並將其顯示在屏幕上。然後你就可以顯示給朋友,讓他們用自己的手機掃描條形碼:

10 |

11 |

要使用此功能,請從主掃描屏幕上的菜單按鈕,並點擊“分享”。然後選擇是否要共享聯繫人,書籤,應用程序,或將剪貼板的內容。將自動生成的QR碼。當你完成後,按返回或家庭。

12 |

要生成QR碼從您的計算機,嘗試的ZXing QR代碼生成: http://zxing.appspot.com/generator/

13 |

谷歌翻譯,譯。

14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | proguard.config=proguard-android-optimize.txt 12 | 13 | # Project target. 14 | target=android-17 15 | android.library=true 16 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-whitelist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-whitelist", 3 | "version": "1.2.0", 4 | "description": "Cordova Whitelist Plugin", 5 | "cordova": { 6 | "platforms": [ 7 | "android" 8 | ] 9 | }, 10 | "repository": { 11 | "type": "git", 12 | "url": "https://github.com/apache/cordova-plugin-whitelist" 13 | }, 14 | "keywords": [ 15 | "cordova", 16 | "whitelist", 17 | "ecosystem:cordova", 18 | "cordova-android" 19 | ], 20 | "engines": [ 21 | { 22 | "name": "cordova-android", 23 | "version": ">=4.0.0-dev" 24 | } 25 | ], 26 | "author": "Apache Software Foundation", 27 | "license": "Apache 2.0" 28 | } 29 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.outsystems.plugins.FileChooser/www/FileChooser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * OutSystems R&D 3 | */ 4 | (function(cordova){ 5 | var FileChooser = function() { 6 | 7 | }; 8 | 9 | FileChooser.prototype.open = function(params, success, fail) { 10 | return cordova.exec(function(args) { 11 | success(args); 12 | }, function(args) { 13 | fail(args); 14 | }, 'FileChooser', 'open', [params||{}]); 15 | }; 16 | 17 | window.filechooser = new FileChooser(); 18 | 19 | // backwards compatibility 20 | window.plugins = window.plugins || {}; 21 | window.plugins.filechooser = window.filechooser; 22 | })(window.PhoneGap || window.Cordova || window.cordova); -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/layout/activity_splashscreen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 17 | 18 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/layout-sw600dp/activity_splashscreen.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 17 | 18 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/circle.yml: -------------------------------------------------------------------------------- 1 | machine: 2 | environment: 3 | ANDROID_NDK_HOME: $ANDROID_NDK 4 | 5 | dependencies: 6 | pre: 7 | - npm install -g cordova-paramedic 8 | - npm install -g cordova 9 | 10 | test: 11 | pre: 12 | - emulator -avd circleci-android21 -no-audio -no-window: 13 | background: true 14 | parallel: true 15 | - circle-android wait-for-boot 16 | override: 17 | - cordova-paramedic --platform android --plugin . 18 | - cp spec/www/spec/simple-test.js tests/tests.js 19 | - cordova-paramedic --platform android --plugin . --timeout 3600000 20 | - cp spec/www/spec/legacy.js tests/tests.js 21 | - cordova-paramedic --platform android --plugin . --timeout 7200000 22 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ja/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1Dバーコードについて 6 | 7 | 8 | 9 |

そのような製品パッケージに印刷されるような伝統的なバーコードもまた、1次元バーコードとして知られています。 UPCとEANなど、一般的に使用されるいくつかの種類があります。ほとんどはこれに似ているように見えます:

10 |

11 |

これらの1Dバーコードは、通常、CDや本のように、製品を説明する固有のコードが含まれています。あなたは、価格やレビューなどを見つけるために、インターネット上でこのコードを調べることができます。

12 |

あなたが本をスキャンする場合は、単語やフレーズの本の内容を検索して、それが表示されるすべてのページを見つけることができます:

13 |

14 |

Google翻訳で翻訳。

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ko/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 1D 바코드 정보 6 | 7 | 8 | 9 |

이러한 제품 포장에 인쇄 된 것과 같은 전통적인 바코드는도 1 차원 바코드로 알려져 있습니다. UPC 및 EAN 등 일반적으로 사용되는 여러 종류가 있습니다. 대부분은 다음과 유사 :

10 |

11 |

이 1D 바코드는 일반적으로 CD 나 책 같은 제품을 설명하는 고유 한 코드가 포함되어 있습니다. 당신은 가격, 리뷰 등을 찾아 인터넷에서이 코드를 찾아 볼 수 있습니다.

12 |

당신은 책을 스캔 할 경우, 당신은 또한 단어 나 문구에 대한 책의 내용을 검색하고 표시 모든 페이지를 찾을 수 있습니다 :

13 |

14 |

Google 번역을 통해 번역.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/drawable/os_progress_bar.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 6 | 7 | 8 | 9 | 10 | 12 | 13 | 14 | 16 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "version": "2.0.0", 3 | "name": "com.phonegap.plugins.barcodescanner", 4 | "cordova_name": "BarcodeScanner", 5 | "description": "You can use the BarcodeScanner plugin to scan different types of barcodes (using the device's camera) and get the metadata encoded in them for processing within your application.", 6 | "license": "MIT", 7 | "repo": "https://github.com/wildabeast/BarcodeScanner", 8 | "issue": "https://github.com/wildabeast/BarcodeScanner/issues", 9 | "platforms": [ 10 | "ios", 11 | "android", 12 | "windows8", 13 | "wp8" 14 | ], 15 | "engines": [ 16 | { 17 | "name": "cordova", 18 | "version": ">=3.0.0" 19 | } 20 | ] 21 | } -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ko/sharing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 어떻게 QR 코드를 만드는 방법 6 | 7 | 8 | 9 |

2D 바코드를 스캔뿐만 아니라, 바코드 스캐너는 QR 코드를 생성 할 수 있으며 화면에 표시됩니다. 그럼 당신은 친구에게 보여, 그 자신의 휴대 전화로 바코드를 스캔하도록 할 수 있습니다 :

10 |

11 |

이 기능을 사용하려면 기본 검색 화면에서 메뉴 버튼을 누르면,하고 공유를 누릅니다. 그런 다음 연락처, 즐겨 찾기, 응용 프로그램 또는 클립 보드의 내용을 공유할지 여부를 선택합니다. QR 코드가 자동으로 생성됩니다. 이 완료되면, 뒤로 또는 홈을 누릅니다.

12 |

컴퓨터에서 QR 코드를 생성하려면 ZXing QR 코드 생성기를 사용해 : http://zxing.appspot.com/generator/

13 |

Google 번역을 통해 번역.

14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ja/sharing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | どのようにQRコードを作成する 6 | 7 | 8 | 9 |

2Dバーコードをスキャンするだけでなく、バーコードスキャナもQRコードを生成することができ、あなたの画面上に表示。その後、友人にそれを見せ、それらを自分の携帯電話でバーコードをスキャンさせることができます:

10 |

11 |

この機能を使用するには、主走査画面からメニューボタンを押して、共有をタップします。次に、あなたが連絡先、ブックマーク、アプリケーション、またはクリップボードの内容を共有したいと思うかどうかを選択します。 QRコードが自動的に生成されます。設定が完了したら、[戻る]または[ホームキーを押します。

12 |

お使いのコンピュータからQRコードを生成するには、ZXingのQRコードジェネレータを試してください: http://zxing.appspot.com/generator/

13 |

Google翻訳で翻訳。

14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rCN/scanning.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 如何扫描 6 | 7 | 8 | 9 |

持续不断地扫描条码扫描仪屏幕上显示的一个方形区域 - 只是了电话线,使条码是完全取景器内的矩形:

10 |

11 |

一维条码的产品需要一个电话,支持自动对焦。如果没有它,QR码和Data Matrix码将被扫描。

12 |

当条码阅读,蜂鸣声会玩,你会看到扫描的条形码包含的描述和选项的内容采取行动的结果。

13 |

如果你有麻烦扫描,请一定要保持稳定的手机。如果相机无法对焦,尝试从条形码移动电话或接近的。

14 | 18 |

谷歌翻译,译。

19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rTW/scanning.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 如何掃描 6 | 7 | 8 | 9 |

持續不斷地掃描條碼掃描儀屏幕上顯示的一個方形區域 - 只是了電話線,使條碼是完全取景器內的矩形:

10 |

11 |

一維條碼的產品需要一個電話,支持自動對焦。如果沒有它,QR碼和Data Matrix碼將被掃描。

12 |

當條碼閱讀,蜂鳴聲會玩,你會看到掃描的條形碼包含的描述和選項的內容採取行動的結果。

13 |

如果你有麻煩掃描,請一定要保持穩定的手機。如果相機無法對焦,嘗試從條形碼移動電話或接近的。

14 | 18 |

谷歌翻譯,譯。

19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-console/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-console", 3 | "version": "1.0.2", 4 | "description": "Cordova Console Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-console", 7 | "platforms": [ 8 | "ios", 9 | "ubuntu", 10 | "wp7", 11 | "wp8", 12 | "windows8", 13 | "windows" 14 | ] 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/apache/cordova-plugin-console" 19 | }, 20 | "keywords": [ 21 | "cordova", 22 | "console", 23 | "ecosystem:cordova", 24 | "cordova-ios", 25 | "cordova-ubuntu", 26 | "cordova-wp7", 27 | "cordova-wp8", 28 | "cordova-windows8", 29 | "cordova-windows" 30 | ], 31 | "author": "Apache Software Foundation", 32 | "license": "Apache 2.0" 33 | } 34 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/spec/html/SuiteView.js: -------------------------------------------------------------------------------- 1 | jasmine.HtmlReporter.SuiteView = function(suite, dom, views) { 2 | this.suite = suite; 3 | this.dom = dom; 4 | this.views = views; 5 | 6 | this.element = this.createDom('div', { className: 'suite' }, 7 | this.createDom('a', { className: 'description', href: '?spec=' + encodeURIComponent(this.suite.getFullName()) }, this.suite.description) 8 | ); 9 | 10 | this.appendToSummary(this.suite, this.element); 11 | }; 12 | 13 | jasmine.HtmlReporter.SuiteView.prototype.status = function() { 14 | return this.getSpecStatus(this.suite); 15 | }; 16 | 17 | jasmine.HtmlReporter.SuiteView.prototype.refresh = function() { 18 | this.element.className += " " + this.status(); 19 | }; 20 | 21 | jasmine.HtmlReporterHelpers.addHelpers(jasmine.HtmlReporter.SuiteView); 22 | 23 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/config.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | Outsystems 4 | 5 | A sample Apache Cordova application that responds to the deviceready event. 6 | 7 | 8 | Apache Cordova Team 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/www/plugins/com.outsystems.plugins.FileChooser/www/FileChooser.js: -------------------------------------------------------------------------------- 1 | cordova.define("com.outsystems.plugins.FileChooser.FileChooser", function(require, exports, module) { /** 2 | * OutSystems R&D 3 | */ 4 | (function(cordova){ 5 | var FileChooser = function() { 6 | 7 | }; 8 | 9 | FileChooser.prototype.open = function(params, success, fail) { 10 | return cordova.exec(function(args) { 11 | success(args); 12 | }, function(args) { 13 | fail(args); 14 | }, 'FileChooser', 'open', [params||{}]); 15 | }; 16 | 17 | window.filechooser = new FileChooser(); 18 | 19 | // backwards compatibility 20 | window.plugins = window.plugins || {}; 21 | window.plugins.filechooser = window.filechooser; 22 | })(window.PhoneGap || window.Cordova || window.cordova); 23 | }); 24 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/platform_www/plugins/com.outsystems.plugins.FileChooser/www/FileChooser.js: -------------------------------------------------------------------------------- 1 | cordova.define("com.outsystems.plugins.FileChooser.FileChooser", function(require, exports, module) { /** 2 | * OutSystems R&D 3 | */ 4 | (function(cordova){ 5 | var FileChooser = function() { 6 | 7 | }; 8 | 9 | FileChooser.prototype.open = function(params, success, fail) { 10 | return cordova.exec(function(args) { 11 | success(args); 12 | }, function(args) { 13 | fail(args); 14 | }, 'FileChooser', 'open', [params||{}]); 15 | }; 16 | 17 | window.filechooser = new FileChooser(); 18 | 19 | // backwards compatibility 20 | window.plugins = window.plugins || {}; 21 | window.plugins.filechooser = window.filechooser; 22 | })(window.PhoneGap || window.Cordova || window.cordova); 23 | }); 24 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/menu/capture.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/menu/encode.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/model/DLOperationType.java: -------------------------------------------------------------------------------- 1 | package com.outsystems.android.model; 2 | 3 | public enum DLOperationType { 4 | 5 | dlLoginOperation("login"), 6 | dlOpenUrlOperation("openurl"), 7 | dlInvalidOperation("invalid"); 8 | 9 | public final String name; 10 | 11 | DLOperationType(String name){ 12 | this.name = name; 13 | } 14 | 15 | 16 | public String toString(){ 17 | return this.getName(); 18 | } 19 | 20 | public String getName(){ 21 | return this.name; 22 | } 23 | 24 | 25 | public static DLOperationType getOperationType(String name){ 26 | DLOperationType result = dlInvalidOperation; 27 | 28 | for(DLOperationType t: DLOperationType.values()){ 29 | if(t.getName().equalsIgnoreCase(name)){ 30 | result = t; 31 | break; 32 | } 33 | } 34 | 35 | return result; 36 | } 37 | 38 | } 39 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | ############################# 2 | # Android 3 | gen/ 4 | build/ 5 | /local.properties 6 | # Old Android 7 | bin/ 8 | proguard/ 9 | # built application files 10 | *.apk 11 | *.ap_ 12 | # files for the dex VM 13 | *.dex 14 | # Java class files 15 | *.class 16 | 17 | # suggestion: also ignore libs/*.properties files for old eclipse project 18 | # can't be added here because multiple libs/ directory can be around in different paths 19 | 20 | # Android Studio 21 | .idea/ 22 | .gradle 23 | /*/local.properties 24 | /*/out 25 | /*/*/build 26 | /*/*/production 27 | *.iml 28 | *.iws 29 | *.ipr 30 | 31 | # Eclipse 32 | .classpath 33 | .settings 34 | # Eclipse NDK 35 | .cproject 36 | 37 | # Mac 38 | .DS_Store 39 | 40 | # Generic 41 | *~ 42 | .swp 43 | 44 | # Android NDK 45 | *.o 46 | *.o.d 47 | *_g 48 | *.a 49 | *.pinfo 50 | *.gcno 51 | *.bar 52 | gdbserver 53 | gdb.setup 54 | 55 | ############################# 56 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /outsystems-app-android/.gitignore: -------------------------------------------------------------------------------- 1 | ############################# 2 | # Android 3 | gen/ 4 | build/ 5 | /local.properties 6 | # Old Android 7 | bin/ 8 | proguard/ 9 | # built application files 10 | *.apk 11 | *.ap_ 12 | # files for the dex VM 13 | *.dex 14 | # Java class files 15 | *.class 16 | 17 | # suggestion: also ignore libs/*.properties files for old eclipse project 18 | # can't be added here because multiple libs/ directory can be around in different paths 19 | 20 | # Android Studio 21 | .idea/ 22 | .gradle 23 | /*/local.properties 24 | /*/out 25 | /*/*/build 26 | /*/*/production 27 | *.iml 28 | *.iws 29 | *.ipr 30 | 31 | # Eclipse 32 | .classpath 33 | .settings 34 | # Eclipse NDK 35 | .cproject 36 | 37 | # Mac 38 | .DS_Store 39 | 40 | # Generic 41 | *~ 42 | .swp 43 | 44 | # Android NDK 45 | *.o 46 | *.o.d 47 | *_g 48 | *.a 49 | *.pinfo 50 | *.gcno 51 | *.bar 52 | gdbserver 53 | gdb.setup 54 | 55 | ############################# 56 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | - 5 | AR 6 | AU 7 | BR 8 | BG 9 | CA 10 | CN 11 | CZ 12 | DE 13 | DK 14 | ES 15 | FI 16 | FR 17 | GB 18 | GR 19 | HU 20 | ID 21 | IT 22 | JP 23 | KR 24 | NL 25 | PL 26 | PT 27 | RU 28 | SE 29 | SK 30 | SI 31 | TR 32 | TW 33 | US 34 | 35 | 36 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/menu/capture.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/menu/encode.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rCN/about2d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 关于二维条码 6 | 7 | 8 | 9 |

条码扫描器 还知道如何读取二维条形码,QR码和Data Matrix码。例如,下面的代码包含超链接的ZXing项目主页:

10 |

11 | 12 | 13 |

14 |

您也可以在QR码代表的联系信息,并把它放在一张名片或网站。当您扫描,结果屏幕提供了一个可供选择的行动:

15 |

16 |

除了网址和联系方式,QR码还可以包含以下内容:

17 |
    18 |
  • 日历事件,您可以添加到您的日历
  • 19 |
  • 您可以拨打的电话号码,
  • 20 |
  • 短信号码,您可以短信
  • 21 |
  • 您可以通过电子邮件的电子邮件地址,
  • 22 |
  • 地理坐标,你可以打开地图
  • 23 |
  • 纯文本,你可以阅读,然后与朋友分享
  • 24 |
25 |

谷歌翻译,译。

26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rTW/about2d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 關於二維條碼 6 | 7 | 8 | 9 |

條碼掃描器 還知道如何讀取二維條形碼,QR碼和Data Matrix碼。例如,下面的代碼包含超鏈接的ZXing項目主頁:

10 |

11 | 12 | 13 |

14 |

您也可以在QR碼代表的聯繫信息,並把它放在一張名片或網站。當您掃描,結果屏幕提供了一個可供選擇的行動:

15 |

16 |

除了網址和聯繫方式,QR碼還可以包含以下內容:

17 |
    18 |
  • 日曆事件,您可以添加到您的日曆
  • 19 |
  • 您可以撥打的電話號碼,
  • 20 |
  • 短信號碼,您可以短信
  • 21 |
  • 您可以通過電子郵件的電子郵件地址,
  • 22 |
  • 地理坐標,你可以打開地圖
  • 23 |
  • 純文本,你可以閱讀,然後與朋友分享
  • 24 |
25 |

谷歌翻譯,譯。

26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/toEnd.js: -------------------------------------------------------------------------------- 1 | var common = require('./common'); 2 | var fs = require('fs'); 3 | var path = require('path'); 4 | 5 | //@ 6 | //@ ### 'string'.toEnd(file) 7 | //@ 8 | //@ Examples: 9 | //@ 10 | //@ ```javascript 11 | //@ cat('input.txt').toEnd('output.txt'); 12 | //@ ``` 13 | //@ 14 | //@ Analogous to the redirect-and-append operator `>>` in Unix, but works with JavaScript strings (such as 15 | //@ those returned by `cat`, `grep`, etc). 16 | function _toEnd(options, file) { 17 | if (!file) 18 | common.error('wrong arguments'); 19 | 20 | if (!fs.existsSync( path.dirname(file) )) 21 | common.error('no such file or directory: ' + path.dirname(file)); 22 | 23 | try { 24 | fs.appendFileSync(file, this.toString(), 'utf8'); 25 | } catch(e) { 26 | common.error('could not append to file (code '+e.code+'): '+file, true); 27 | } 28 | } 29 | module.exports = _toEnd; 30 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/layout/history_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | 16 | 21 | 22 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/src/com/google/zxing/pdf417/encoder/Compaction.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2011 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.google.zxing.pdf417.encoder; 18 | 19 | public enum Compaction { 20 | 21 | AUTO, 22 | TEXT, 23 | BYTE, 24 | NUMERIC 25 | 26 | } 27 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/.gitignore: -------------------------------------------------------------------------------- 1 | ############################# 2 | # Android 3 | gen/ 4 | build/ 5 | /local.properties 6 | # Old Android 7 | bin/ 8 | proguard/ 9 | # built application files 10 | *.apk 11 | *.ap_ 12 | # files for the dex VM 13 | *.dex 14 | # Java class files 15 | *.class 16 | 17 | # suggestion: also ignore libs/*.properties files for old eclipse project 18 | # can't be added here because multiple libs/ directory can be around in different paths 19 | 20 | # Android Studio 21 | .idea/ 22 | .gradle 23 | /*/local.properties 24 | /*/out 25 | /*/*/build 26 | /*/*/production 27 | *.iml 28 | *.iws 29 | *.ipr 30 | 31 | # Eclipse 32 | .classpath 33 | .settings 34 | # Eclipse NDK 35 | .cproject 36 | 37 | # Mac 38 | .DS_Store 39 | 40 | # Generic 41 | *~ 42 | .swp 43 | 44 | # Android NDK 45 | *.o 46 | *.o.d 47 | *_g 48 | *.a 49 | *.pinfo 50 | *.gcno 51 | *.bar 52 | gdbserver 53 | gdb.setup 54 | 55 | ############################# 56 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/values/arrays.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | - 5 | AR 6 | AU 7 | BR 8 | BG 9 | CA 10 | CN 11 | CZ 12 | DE 13 | DK 14 | ES 15 | FI 16 | FR 17 | GB 18 | GR 19 | HU 20 | ID 21 | IT 22 | JP 23 | KR 24 | NL 25 | PL 26 | PT 27 | RU 28 | SE 29 | SK 30 | SI 31 | TR 32 | TW 33 | US 34 | 35 | 36 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/src/com/google/zxing/client/android/IntentSource.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2011 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.google.zxing.client.android; 18 | 19 | enum IntentSource { 20 | 21 | NATIVE_APP_INTENT, 22 | PRODUCT_SEARCH_LINK, 23 | ZXING_LINK, 24 | NONE 25 | 26 | } 27 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/src/windows/SQLite3-WinRT/SQLite3/Statement.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | #include "sqlite3.h" 4 | 5 | namespace SQLite3 6 | { 7 | ref class Database; 8 | 9 | public ref class Statement sealed 10 | { 11 | public: 12 | Statement(Database^ database, Platform::String^ sql); 13 | virtual ~Statement(); 14 | 15 | int Step(); 16 | 17 | int ColumnCount(); 18 | int ColumnType(int index); 19 | Platform::String^ ColumnName(int index); 20 | 21 | Platform::String^ ColumnText(int index); 22 | int ColumnInt(int index); 23 | long long ColumnInt64(int index); 24 | double ColumnDouble(int index); 25 | 26 | int BindText(int index, Platform::String^ val); 27 | int BindInt(int index, int val); 28 | int BindInt64(int index, long long val); 29 | int BindDouble(int index, double val); 30 | int BindNull(int index); 31 | 32 | private: 33 | sqlite3_stmt* statement; 34 | }; 35 | } 36 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/shelljs/src/to.js: -------------------------------------------------------------------------------- 1 | var common = require('./common'); 2 | var fs = require('fs'); 3 | var path = require('path'); 4 | 5 | //@ 6 | //@ ### 'string'.to(file) 7 | //@ 8 | //@ Examples: 9 | //@ 10 | //@ ```javascript 11 | //@ cat('input.txt').to('output.txt'); 12 | //@ ``` 13 | //@ 14 | //@ Analogous to the redirection operator `>` in Unix, but works with JavaScript strings (such as 15 | //@ those returned by `cat`, `grep`, etc). _Like Unix redirections, `to()` will overwrite any existing file!_ 16 | function _to(options, file) { 17 | if (!file) 18 | common.error('wrong arguments'); 19 | 20 | if (!fs.existsSync( path.dirname(file) )) 21 | common.error('no such file or directory: ' + path.dirname(file)); 22 | 23 | try { 24 | fs.writeFileSync(file, this.toString(), 'utf8'); 25 | } catch(e) { 26 | common.error('could not write to file (code '+e.code+'): '+file, true); 27 | } 28 | } 29 | module.exports = _to; 30 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/core/parsing/GenericResponseParsingTask.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Outsystems Project 3 | * 4 | * Copyright (C) 2014 Outsystems. 5 | * 6 | * This software is proprietary. 7 | */ 8 | package com.outsystems.android.core.parsing; 9 | 10 | import android.os.AsyncTask; 11 | /** 12 | * Class description. 13 | * 14 | * @author vmfo 15 | * @version $Revision: 666 $ 16 | * 17 | */ 18 | public abstract class GenericResponseParsingTask extends AsyncTask implements ParsingTaskMethods { 19 | 20 | public abstract Object parsingMethod(); 21 | 22 | public abstract void parsingFinishMethod(Object result); 23 | 24 | @Override 25 | protected Object doInBackground(Object... params) { 26 | return parsingMethod(); 27 | } 28 | 29 | @Override 30 | protected void onPostExecute(Object objects) { 31 | parsingFinishMethod(objects); 32 | } 33 | } 34 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-en/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | About 1D barcodes 6 | 7 | 8 | 9 |

Traditional barcodes, such as those printed on product packaging, are also known as one dimensional barcodes. There are several types commonly used, including UPC and EAN. Most look similar to this:

10 |

11 |

These 1D barcodes contain a unique code which typically describes a product, like a CD or a book. You can look this code up on the internet to find prices, reviews, and more.

12 |

If you scan a book, you can also search the contents of the book for a word or phrase, and find all the pages where it appears:

13 |

14 | 15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/ant.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked in Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | application-package=com.google.zxing.client.android 19 | external-libs-folder=libs 20 | key.store=../../release.keystore 21 | key.alias=release -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/layout/history_list_item.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 9 | 10 | 15 | 16 | 21 | 22 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rCN/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 条码扫描器说明 6 | 7 | 8 | 9 |

Barcode Scanner 4.3.1

10 |

官方的Android应用程序的开源ZXing项目:
11 | http://code.google.com/p/zxing

12 |

条码扫描器在您的手机上使用摄像头读取条形码,查询产品的信息,如价格和评论。

13 |

14 |

此外,还可以读取QR码和Data Matrix二维条码,如。这些都可以包含网站的链接,联系信息,如电话号码和电子邮件地址,以及更多。

15 | 22 |

谷歌翻译,译。

23 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-zh-rTW/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 條碼掃描器說明 6 | 7 | 8 | 9 |

Barcode Scanner 4.3.1

10 |

官方的Android應用程序的開源ZXing項目:
11 | http://code.google.com/p/zxing

12 |

條碼掃描器在您的手機上使用攝像頭讀取條形碼,查詢產品的信息,如價格和評論。

13 |

14 |

此外,還可以讀取QR碼和Data Matrix二維條碼,如。這些都可以包含網站的鏈接,聯繫信息,如電話號碼和電子郵件地址,以及更多。

15 | 22 |

谷歌翻譯,譯。

23 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | AndroidUniversalImageLoaderLib 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/CordovaLib/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | Outsystems-CordovaLib 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | exports.TEMPORARY = 0; 23 | exports.PERSISTENT = 1; 24 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ko/scanning.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 스캔하는 방법 6 | 7 | 8 | 9 |

: 바코드가 완전히 뷰 파인더의 사각형 안에하도록 전화, 조금만 라인 - 바코드 스캐너는 지속적으로 화면에 표시 사각형 영역을 검사

10 |

11 |

제품에서 발견 된 것과 같은 1D 바코드는 자동 초점과 전화를해야합니다. 가 없으면 만 QR 코드와 데이터 매트릭스 코드는 확인 가능한 것입니다.

12 |

바코드를 읽을 때, 삐 소리가 재생됩니다 그리고 당신은 스캔, 바코드의 내용이 뭔지 설명 및 내용에 조치를 취할 수있는 옵션의 결과를 볼 수 있습니다.

13 |

당신은 문제가 검색하는 데 문제가있는 경우 휴대 전화가 정상 상태에 있는지 확인하십시오. 카메라가 초점을 맞출 수없는 경우, 바코드에서 더 또는 더 가까이 휴대 전화를 이동하십시오.

14 | 18 |

Google 번역을 통해 번역.

19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ja/scanning.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | スキャンする方法 6 | 7 | 8 | 9 |

:バーコードが完全にファインダーの四角形の内部にあるので、電話最大ちょうどライン - バーコードスキャナは、連続して、画面に表示される正方形の領域をスキャン

10 |

11 |

商品で見られるような1Dバーコードは、オートフォーカス機能付きの携帯電話を必要とします。それがなければ、唯一のQRコードとデータマトリクスコードがスキャン可能になります。

12 |

バーコードが読み取られると、ビープ音が鳴り、あなたは、スキャン、バーコードが含まれている内容の説明、およびコンテンツに対してアクションを実行するためのオプションの結果が表示されます。

13 |

あなたは、スキャンのトラブルを抱えている場合は、電話機をしっかりと抑えていることを確認してください。ピントが合っていませんであれば、バーコードからさらなるまたは近い電話を動かしてみてください。

14 | 18 |

Google翻訳で翻訳。

19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-nl/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Over 1D barcodes 6 | 7 | 8 | 9 |

Traditionele barcodes, zoals gedrukt op de verpakking, ook bekend als eendimensionale barcodes. Er zijn verschillende types gebruikt, zoals UPC en EAN. De meeste lijken op deze:

10 |

11 |

Deze 1D barcodes bevatten een unieke code die typisch beschrijft een product, zoals een cd of een boek. U kunt kijken deze code op het internet om de prijzen, reviews en nog veel meer te vinden.

12 |

Als u scant een boek, kunt u ook zoeken in de inhoud van het boek voor een woord of zin, en vind alle pagina's waar het verschijnt:

13 |

14 |

Vertaald door Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-battery-status/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-battery-status", 3 | "version": "1.1.1", 4 | "description": "Cordova Battery Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-battery-status", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "blackberry10", 13 | "wp7", 14 | "wp8", 15 | "tizen", 16 | "firefoxos" 17 | ] 18 | }, 19 | "repository": { 20 | "type": "git", 21 | "url": "https://github.com/apache/cordova-plugin-battery-status" 22 | }, 23 | "keywords": [ 24 | "cordova", 25 | "battery", 26 | "ecosystem:cordova", 27 | "cordova-android", 28 | "cordova-amazon-fireos", 29 | "cordova-ubuntu", 30 | "cordova-ios", 31 | "cordova-blackberry10", 32 | "cordova-wp7", 33 | "cordova-wp8", 34 | "cordova-tizen", 35 | "cordova-firefoxos" 36 | ], 37 | "author": "Apache Software Foundation", 38 | "license": "Apache 2.0" 39 | } 40 | -------------------------------------------------------------------------------- /outsystems-app-android/outsystems-app-android.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/.project: -------------------------------------------------------------------------------- 1 | 2 | 3 | CaptureActivity 4 | 5 | 6 | 7 | 8 | 9 | com.android.ide.eclipse.adt.ResourceManagerBuilder 10 | 11 | 12 | 13 | 14 | com.android.ide.eclipse.adt.PreCompilerBuilder 15 | 16 | 17 | 18 | 19 | org.eclipse.jdt.core.javabuilder 20 | 21 | 22 | 23 | 24 | com.android.ide.eclipse.adt.ApkBuilder 25 | 26 | 27 | 28 | 29 | 30 | com.android.ide.eclipse.adt.AndroidNature 31 | org.eclipse.jdt.core.javanature 32 | 33 | 34 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ru/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | О 1D штрих-кодов 6 | 7 | 8 | 9 |

Традиционные штрих-коды, такие как напечатанный на упаковке продукта, также известный как одномерные штрих-коды. Есть несколько типов широко используются, в том числе UPC и EAN. Большинство выглядеть примерно так:

10 |

11 |

Эти 1D штрих-коды содержат уникальный код, который обычно описывает продукт, как компакт-диск или книгу. Вы можете посмотреть этот код на Интернет, чтобы найти цены, обзоры и многое другое.

12 |

Если вы сканируете книгу, вы также можете найти в содержании книги слово или фразу, и найти все страницы, где он появляется:

13 |

14 |

Перевод Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/src/com/google/zxing/client/android/common/executor/AsyncTaskExecInterface.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2012 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.google.zxing.client.android.common.executor; 18 | 19 | import android.os.AsyncTask; 20 | 21 | public interface AsyncTaskExecInterface { 22 | 23 | void execute(AsyncTask task, T... args); 24 | 25 | } 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-file/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-file", 3 | "version": "3.0.0", 4 | "description": "Cordova File Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-file", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "wp7", 13 | "wp8", 14 | "blackberry10", 15 | "windows8", 16 | "windows", 17 | "firefoxos" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/apache/cordova-plugin-file" 23 | }, 24 | "keywords": [ 25 | "cordova", 26 | "file", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ubuntu", 31 | "cordova-ios", 32 | "cordova-wp7", 33 | "cordova-wp8", 34 | "cordova-blackberry10", 35 | "cordova-windows8", 36 | "cordova-windows", 37 | "cordova-firefoxos" 38 | ], 39 | "author": "Apache Software Foundation", 40 | "license": "Apache 2.0" 41 | } 42 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-en/sharing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | How to create QR Codes 6 | 7 | 8 | 9 |

In addition to scanning 2D barcodes, Barcode Scanner can also generate a QR Code and display it on your screen. Then you can show it to a friend, and let them scan the barcode with their phone:

10 |

11 |

To use this feature, press the Menu button from the main scanning screen, and tap Share. Then choose whether you want to share a contact, a bookmark, an application, or the contents of the clipboard. A QR Code will be generated automatically. When you're done, press Back or Home.

12 |

To generate QR Codes from your computer, try the ZXing QR Code Generator: http://zxing.appspot.com/generator/

13 | 14 | 15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-console/src/ios/CDVLogger.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | 22 | @interface CDVLogger : CDVPlugin 23 | 24 | - (void)logLevel:(CDVInvokedUrlCommand*)command; 25 | 26 | @end 27 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/src/com/google/zxing/FakeR.java: -------------------------------------------------------------------------------- 1 | package com.google.zxing; 2 | 3 | import android.app.Activity; 4 | import android.content.Context; 5 | 6 | /** 7 | * R replacement for PhoneGap Build. 8 | * 9 | * ([^.\w])R\.(\w+)\.(\w+) 10 | * $1fakeR("$2", "$3") 11 | * 12 | * @author Maciej Nux Jaros 13 | */ 14 | public class FakeR { 15 | private Context context; 16 | private String packageName; 17 | 18 | public FakeR(Activity activity) { 19 | context = activity.getApplicationContext(); 20 | packageName = context.getPackageName(); 21 | } 22 | 23 | public FakeR(Context context) { 24 | this.context = context; 25 | packageName = context.getPackageName(); 26 | } 27 | 28 | public int getId(String group, String key) { 29 | return context.getResources().getIdentifier(key, group, packageName); 30 | } 31 | 32 | public static int getId(Context context, String group, String key) { 33 | return context.getResources().getIdentifier(key, group, context.getPackageName()); 34 | } 35 | } 36 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-contacts/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-contacts", 3 | "version": "1.1.0", 4 | "description": "Cordova Contacts Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-contacts", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ubuntu", 11 | "ios", 12 | "blackberry10", 13 | "wp7", 14 | "wp8", 15 | "firefoxos", 16 | "windows8", 17 | "windows" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/apache/cordova-plugin-contacts" 23 | }, 24 | "keywords": [ 25 | "cordova", 26 | "contacts", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ubuntu", 31 | "cordova-ios", 32 | "cordova-blackberry10", 33 | "cordova-wp7", 34 | "cordova-wp8", 35 | "cordova-firefoxos", 36 | "cordova-windows8", 37 | "cordova-windows" 38 | ], 39 | "author": "Apache Software Foundation", 40 | "license": "Apache 2.0" 41 | } 42 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ja/about2d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 約二次元バーコード 6 | 7 | 8 | 9 |

バーコードスキャナ また、QRコードとデータマトリックスコードのような2次元バーコードを読み取る方法を理解しています。たとえば、以下のコードは、ZXingプロジェクトのホーム·ページへのハイパーリンクが含まれています。

10 |

11 | 12 | 13 |

14 |

また、QRコードで連絡先情報を表しており、名刺やWebサイト上でそれを置くことができます。あなたがそれをスキャンすると、結果画面には、アクションの選択肢を提供します:

15 |

16 |

URLや連絡先情報のほかに、QRコードも含めることができます。

17 |
    18 |
  • あなたのカレンダーに追加できるカレンダーイベント、
  • 19 |
  • あなたがダイヤルできる電話番号は、
  • 20 |
  • あなたがテキストメッセージできるSMS番号、
  • 21 |
  • あなたが電子メールで送ることができ、電子メールアドレス、
  • 22 |
  • あなたがマップで開くことができ、地理座標、
  • 23 |
  • あなたが読むことができるプレーンテキストは、その後、友人と共有
  • 24 |
25 |

Google翻訳で翻訳。

26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/src/com/google/zxing/client/android/encode/Formatter.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright (C) 2011 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.google.zxing.client.android.encode; 18 | 19 | /** 20 | * Encapsulates some simple formatting logic, to aid refactoring in {@link ContactEncoder}. 21 | * 22 | * @author Sean Owen 23 | */ 24 | interface Formatter { 25 | 26 | String format(String source); 27 | 28 | } 29 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-calendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-calendar", 3 | "version": "4.4.4", 4 | "description": "This plugin allows you to manipulate the native calendar.", 5 | "cordova": { 6 | "id": "cordova-plugin-calendar", 7 | "platforms": [ 8 | "ios", 9 | "android" 10 | ] 11 | }, 12 | "repository": { 13 | "type": "git", 14 | "url": "git+https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin.git" 15 | }, 16 | "keywords": [ 17 | "Calendar", 18 | "Agenda", 19 | "Event", 20 | "ecosystem:cordova", 21 | "cordova-ios", 22 | "cordova-android" 23 | ], 24 | "engines": [ 25 | { 26 | "name": "cordova", 27 | "version": ">=3.0.0" 28 | } 29 | ], 30 | "author": "Eddy Verbruggen (https://github.com/EddyVerbruggen)", 31 | "license": "MIT", 32 | "bugs": { 33 | "url": "https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin/issues" 34 | }, 35 | "homepage": "https://github.com/EddyVerbruggen/Calendar-PhoneGap-Plugin#readme" 36 | } 37 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-geolocation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-geolocation", 3 | "version": "1.0.1", 4 | "description": "Cordova Geolocation Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-geolocation", 7 | "platforms": [ 8 | "android", 9 | "amazon-fireos", 10 | "ios", 11 | "blackberry10", 12 | "ubuntu", 13 | "wp7", 14 | "wp8", 15 | "windows8", 16 | "windows", 17 | "firefoxos" 18 | ] 19 | }, 20 | "repository": { 21 | "type": "git", 22 | "url": "https://github.com/apache/cordova-plugin-geolocation" 23 | }, 24 | "keywords": [ 25 | "cordova", 26 | "geolocation", 27 | "ecosystem:cordova", 28 | "cordova-android", 29 | "cordova-amazon-fireos", 30 | "cordova-ios", 31 | "cordova-blackberry10", 32 | "cordova-ubuntu", 33 | "cordova-wp7", 34 | "cordova-wp8", 35 | "cordova-windows8", 36 | "cordova-windows", 37 | "cordova-firefoxos" 38 | ], 39 | "author": "Apache Software Foundation", 40 | "license": "Apache 2.0" 41 | } 42 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/version: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /* 4 | Licensed to the Apache Software Foundation (ASF) under one 5 | or more contributor license agreements. See the NOTICE file 6 | distributed with this work for additional information 7 | regarding copyright ownership. The ASF licenses this file 8 | to you under the Apache License, Version 2.0 (the 9 | "License"); you may not use this file except in compliance 10 | with the License. You may obtain a copy of the License at 11 | 12 | http://www.apache.org/licenses/LICENSE-2.0 13 | 14 | Unless required by applicable law or agreed to in writing, 15 | software distributed under the License is distributed on an 16 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 17 | KIND, either express or implied. See the License for the 18 | specific language governing permissions and limitations 19 | under the License. 20 | */ 21 | 22 | // Coho updates this line: 23 | var VERSION = "4.1.1"; 24 | 25 | console.log(VERSION); 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ja/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | バーコードスキャナのヘルプ 6 | 7 | 8 | 9 |

Barcode Scanner 4.3.1

10 |

オープンソースZXingプロジェクトの公式Androidアプリ:
11 | http://code.google.com/p/zxing

12 |

バーコードスキャナは、バーコードを読み取ると、価格やレビューなどの製品情報をルックアップするためにお使いの携帯電話のカメラを使用しています。

13 |

14 |

また、そのようなQRコードとデータマトリクスとして2次元バーコードを読み取ります。これらは、ウェブサイト、電話番号や電子メールアドレス、その他などの連絡先情報へのリンクを含めることができます。

15 | 22 |

Google翻訳で翻訳。

23 | -------------------------------------------------------------------------------- /outsystems-app-android/AndroidUniversalImageLoaderLib/src/com/nostra13/universalimageloader/core/assist/FlushedInputStream.java: -------------------------------------------------------------------------------- 1 | package com.nostra13.universalimageloader.core.assist; 2 | 3 | import java.io.FilterInputStream; 4 | import java.io.IOException; 5 | import java.io.InputStream; 6 | 7 | /** 8 | * Many streams obtained over slow connection show this 9 | * problem. 10 | */ 11 | public class FlushedInputStream extends FilterInputStream { 12 | 13 | public FlushedInputStream(InputStream inputStream) { 14 | super(inputStream); 15 | } 16 | 17 | @Override 18 | public long skip(long n) throws IOException { 19 | long totalBytesSkipped = 0L; 20 | while (totalBytesSkipped < n) { 21 | long bytesSkipped = in.skip(n - totalBytesSkipped); 22 | if (bytesSkipped == 0L) { 23 | int by_te = read(); 24 | if (by_te < 0) { 25 | break; // we reached EOF 26 | } else { 27 | bytesSkipped = 1; // we read one byte 28 | } 29 | } 30 | totalBytesSkipped += bytesSkipped; 31 | } 32 | return totalBytesSkipped; 33 | } 34 | } 35 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/src/com/outsystems/android/model/Infrastructure.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Outsystems Project 3 | * 4 | * Copyright (C) 2014 Outsystems. 5 | * 6 | * This software is proprietary. 7 | */ 8 | package com.outsystems.android.model; 9 | 10 | import com.google.gson.annotations.SerializedName; 11 | /** 12 | * Class description. 13 | * 14 | * @author vmfo 15 | * @version $Revision: 666 $ 16 | * 17 | */ 18 | public class Infrastructure { 19 | 20 | @SerializedName("Name") 21 | private String name; 22 | private String version; 23 | 24 | public Infrastructure(String name, String version) { 25 | super(); 26 | this.setName(name); 27 | this.setVersion(version); 28 | } 29 | 30 | public String getName() { 31 | return name; 32 | } 33 | 34 | public void setName(String name) { 35 | this.name = name; 36 | } 37 | 38 | public String getVersion() { 39 | return version; 40 | } 41 | 42 | public void setVersion(String version) { 43 | this.version = version; 44 | } 45 | } 46 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ko/index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 바코드 스캐너 도움말 6 | 7 | 8 | 9 |

Barcode Scanner 4.3.1

10 |

오픈 소스 ZXing 프로젝트의 공식 안드로이드 응용 프로그램 :
11 | http://code.google.com/p/zxing

12 |

바코드 스캐너는 바코드를 읽어와 같은 가격과 리뷰 등의 제품 정보를 조회 할 휴대 전화의 카메라를 사용합니다.

13 |

14 |

그것은 또한 QR 코드와 데이터 매트릭스와 같은 2 차원 바코드를 읽습니다. 이러한 웹 사이트에 대한 링크를 포함 할 수 있습니다, 같은 전화 번호와 이메일 주소 등의 정보를 문의하십시오.

15 | 22 |

Google 번역을 통해 번역.

23 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-console/src/ubuntu/console.cpp: -------------------------------------------------------------------------------- 1 | /* 2 | * Licensed under the Apache License, Version 2.0 (the "License"); 3 | * you may not use this file except in compliance with the License. 4 | * You may obtain a copy of the License at 5 | * 6 | * http://www.apache.org/licenses/LICENSE-2.0 7 | * 8 | * Unless required by applicable law or agreed to in writing, software 9 | * distributed under the License is distributed on an "AS IS" BASIS, 10 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 11 | * See the License for the specific language governing permissions and 12 | * limitations under the License. 13 | */ 14 | 15 | #include "console.h" 16 | 17 | #include 18 | 19 | Console::Console(Cordova *cordova) : CPlugin(cordova) { 20 | } 21 | 22 | void Console::logLevel(int scId, int ecId, QString level, QString message) { 23 | Q_UNUSED(scId) 24 | Q_UNUSED(ecId) 25 | 26 | if (level != "LOG") 27 | std::cout << "[" << level.toStdString() << "] "; 28 | std::cout << message.toStdString() << std::endl; 29 | } 30 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-de/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Über 1D-Barcodes (Strichcodes) 6 | 7 | 8 | 9 |

Die altbekannten Strichcodes, wie solche auf Produktverpackungen, werden auch eindimensionale Barcodes genannt. Es gibt einige verbreitete Arten, wie den UPC (Universal Product Code) und den EAN (European Article Number). Die meisten schauen so aus:

10 |

11 |

Diese Strichcodes enthalten eine einmalige Nummer, welche ein Produkt, wie ein Buch oder eine CD, beschreiben. Man kann nach dieser Nummer im Internet suchen, um Preise oder Beurteilungen zu finden.

12 |

Wenn man den Code eines Buches einscannt, kann man den Inhalt des Buches nach Wörtern oder Sätzen durchsuchen und alle Seiten finden, in denen dieses Wort vorkam:

13 |

14 | 15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ko/about2d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 에 대한 2 차원 바코드 6 | 7 | 8 | 9 |

바코드 스캐너 또한, QR 코드 및 데이터 매트릭스 코드와 같은 2 차원 바코드를 읽는 방법을 이해하고 있습니다. 예를 들어, 아래의 코드는 ZXing 프로젝트 홈 페이지에 하이퍼 링크를 포함 :

10 |

11 | 12 | 13 |

14 |

당신은 또한 QR 코드에 연락처 정보를 나타냅니다, 그리고 명함 또는 웹 사이트에 넣을 수 있습니다. 당신이 그것을 스캔하면 결과 화면이 작업의 선택을 제공합니다 :

15 |

16 |

URL 및 연락처 정보 외에, QR 코드도 포함 할 수 있습니다 :

17 |
    18 |
  • 귀하의 캘린더에 추가 할 수있는 캘린더 이벤트,
  • 19 |
  • 당신이 전화를 걸 수 전화 번호,
  • 20 |
  • 당신은 문자 메시지를 보낼 수있는 SMS 번호,
  • 21 |
  • 당신은 이메일을 보낼 수 이메일 주소
  • 22 |
  • 당신이지도에서 열 수있는 지리 좌표,
  • 23 |
  • 당신이 읽을 수있는 일반 텍스트는 다음 친구와 공유
  • 24 |
25 |

Google 번역을 통해 번역.

26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-file/www/fileSystems.js: -------------------------------------------------------------------------------- 1 | /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | // Overridden by Android, BlackBerry 10 and iOS to populate fsMap. 23 | module.exports.getFs = function(name, callback) { 24 | callback(null); 25 | }; 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-ru/sharing.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Как создать QR-коды 6 | 7 | 8 | 9 |

В дополнение к сканированию 2D штрих-кодов, штрих-код сканером также может генерировать QR-код и отображает его на экране. Затем вы можете показать его другу, и пусть они сканировать штрих-код с телефона:

10 |

11 |

Чтобы использовать эту функцию, нажмите кнопку меню на главном экране сканирования и нажмите Отправить. Затем выберите, хотите ли вы поделиться контакт, закладки, приложения или содержимое буфера обмена. QR-код будет сгенерирован автоматически. Когда вы закончите, нажмите кнопку Назад или дома.

12 |

Для создания QR-коды с компьютера, попробуйте ZXing QR Генератор кода: http://zxing.appspot.com/generator/

13 |

Перевод Google Translate.

14 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/which/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": { 3 | "name": "Isaac Z. Schlueter", 4 | "email": "i@izs.me", 5 | "url": "http://blog.izs.me" 6 | }, 7 | "name": "which", 8 | "description": "Like which(1) unix command. Find the first instance of an executable in the PATH.", 9 | "version": "1.0.5", 10 | "repository": { 11 | "type": "git", 12 | "url": "git://github.com/isaacs/node-which.git" 13 | }, 14 | "main": "which.js", 15 | "bin": { 16 | "which": "./bin/which" 17 | }, 18 | "engines": { 19 | "node": "*" 20 | }, 21 | "dependencies": {}, 22 | "devDependencies": {}, 23 | "readme": "The \"which\" util from npm's guts.\n\nFinds the first instance of a specified executable in the PATH\nenvironment variable. Does not cache the results, so `hash -r` is not\nneeded when the PATH changes.\n", 24 | "readmeFilename": "README.md", 25 | "bugs": { 26 | "url": "https://github.com/isaacs/node-which/issues" 27 | }, 28 | "homepage": "https://github.com/isaacs/node-which", 29 | "_id": "which@1.0.5", 30 | "_from": "which@" 31 | } 32 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/res/layout/search_book_contents_header.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 24 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-it/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | A proposito di codici a barre 1D 6 | 7 | 8 | 9 |

Codici a barre tradizionali, come quelle stampate sulla confezione del prodotto, sono noti anche come uno codici a barre bidimensionali. Ci sono diversi tipi di uso comune, tra cui UPC ed EAN. La maggior parte simile al seguente:

10 |

11 |

Queste barre 1D contengono un codice unico che descrive tipicamente un prodotto, come un CD o un libro. È possibile cercare questo codice su internet per trovare i prezzi, recensioni e altro.

12 |

Se si esegue la scansione di un libro, è anche possibile cercare i contenuti del libro per una parola o una frase, e trovare tutte le pagine in cui appare:

13 |

14 |

Tradotto da Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-fr/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | À propos de codes à barres 1D 6 | 7 | 8 | 9 |

Codes à barres traditionnels, tels que ceux imprimés sur l'emballage du produit, sont également connus comme une dimension codes à barres. Il existe plusieurs types couramment utilisés, y compris l'UPC et EAN. La plupart ressembler à ceci:

10 |

11 |

Ces codes à barres 1D contient un code unique qui décrit typiquement un produit, comme un CD ou un livre. Vous pouvez regarder ce code sur internet pour trouver les prix, critiques et autres.

12 |

Si vous numérisez un livre, vous pouvez également rechercher le contenu du livre pour un mot ou une phrase, et de trouver toutes les pages où il apparaît:

13 |

14 |

Traduit par Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-pt/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Sobre códigos de barras 1D 6 | 7 | 8 | 9 |

Códigos de barras tradicionais, tais como aqueles impressos nas embalagens dos produtos, são também conhecidos como um código de barras de dimensão. Existem vários tipos comumente usados, incluindo UPC e EAN. Mais semelhante a este:

10 |

11 |

Estes códigos de barras 1D conter um código único, o qual geralmente descreve um produto, como um CD ou um livro. Você pode olhar este código na internet para pesquisar preços, opiniões, e muito mais.

12 |

Se você digitalizar um livro, você também pode pesquisar o conteúdo do livro para uma palavra ou frase, e encontrar todas as páginas em que ele aparece:

13 |

14 |

Traduzido pelo Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-dialogs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-plugin-dialogs", 3 | "version": "1.2.0", 4 | "description": "Cordova Notification Plugin", 5 | "cordova": { 6 | "id": "cordova-plugin-dialogs", 7 | "platforms": [ 8 | "firefoxos", 9 | "android", 10 | "browser", 11 | "amazon-fireos", 12 | "ubuntu", 13 | "ios", 14 | "blackberry10", 15 | "wp7", 16 | "wp8", 17 | "windows8", 18 | "windows" 19 | ] 20 | }, 21 | "repository": { 22 | "type": "git", 23 | "url": "https://github.com/apache/cordova-plugin-dialogs" 24 | }, 25 | "keywords": [ 26 | "cordova", 27 | "notification", 28 | "ecosystem:cordova", 29 | "cordova-firefoxos", 30 | "cordova-android", 31 | "cordova-browser", 32 | "cordova-amazon-fireos", 33 | "cordova-ubuntu", 34 | "cordova-ios", 35 | "cordova-blackberry10", 36 | "cordova-wp7", 37 | "cordova-wp8", 38 | "cordova-windows8", 39 | "cordova-windows" 40 | ], 41 | "author": "Apache Software Foundation", 42 | "license": "Apache 2.0" 43 | } 44 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/res/values/ids.xml: -------------------------------------------------------------------------------- 1 | 2 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/assets/html-es/about1d.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Acerca de los códigos de barras 1D 6 | 7 | 8 | 9 |

Códigos de barras tradicionales, tales como las impresas en el embalaje del producto, se conocen también como uno códigos de barras bidimensionales. Existen varios tipos de uso común, incluyendo UPC y EAN. La mayoría de aspecto similar a este:

10 |

11 |

Estos códigos de barras 1D contiene un código único que generalmente describe un producto, como un CD o un libro. Usted puede ver este código en el Internet para encontrar precios, comentarios y más.

12 |

Si digitaliza un libro, también puede buscar en el contenido del libro para una palabra o frase, y encontrar todas las páginas en las que aparece:

13 |

14 |

Traducido por Google Translate.

15 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-sqlite-storage/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "cordova-sqlite-storage", 3 | "version": "0.7.14", 4 | "description": "Native interface to SQLite for PhoneGap/Cordova", 5 | "cordova": { 6 | "id": "cordova-sqlite-storage", 7 | "platforms": [ 8 | "android", 9 | "ios", 10 | "windows", 11 | "wp8", 12 | "wp7", 13 | "amazon-fireos" 14 | ] 15 | }, 16 | "repository": { 17 | "type": "git", 18 | "url": "https://github.com/litehelpers/Cordova-sqlite-storage.git" 19 | }, 20 | "keywords": [ 21 | "sqlite", 22 | "ecosystem:cordova", 23 | "cordova-android", 24 | "cordova-ios", 25 | "cordova-windows", 26 | "cordova-wp8", 27 | "cordova-wp7", 28 | "cordova-amazon-fireos" 29 | ], 30 | "engines": [ 31 | { 32 | "name": "cordova", 33 | "version": ">=3.3.0" 34 | } 35 | ], 36 | "author": "various", 37 | "license": "MIT", 38 | "bugs": { 39 | "url": "https://github.com/litehelpers/Cordova-sqlite-storage/issues" 40 | }, 41 | "homepage": "https://github.com/litehelpers/Cordova-sqlite-storage" 42 | } 43 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/cordova-plugin-device/src/ios/CDVDevice.h: -------------------------------------------------------------------------------- 1 | /* 2 | Licensed to the Apache Software Foundation (ASF) under one 3 | or more contributor license agreements. See the NOTICE file 4 | distributed with this work for additional information 5 | regarding copyright ownership. The ASF licenses this file 6 | to you under the Apache License, Version 2.0 (the 7 | "License"); you may not use this file except in compliance 8 | with the License. You may obtain a copy of the License at 9 | 10 | http://www.apache.org/licenses/LICENSE-2.0 11 | 12 | Unless required by applicable law or agreed to in writing, 13 | software distributed under the License is distributed on an 14 | "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 15 | KIND, either express or implied. See the License for the 16 | specific language governing permissions and limitations 17 | under the License. 18 | */ 19 | 20 | #import 21 | #import 22 | 23 | @interface CDVDevice : CDVPlugin 24 | {} 25 | 26 | + (NSString*)cordovaVersion; 27 | 28 | - (void)getDeviceInfo:(CDVInvokedUrlCommand*)command; 29 | 30 | @end 31 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/assets/www/plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.LocalFileSystem", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | exports.TEMPORARY = 0; 23 | exports.PERSISTENT = 1; 24 | 25 | }); 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/platform_www/plugins/cordova-plugin-file/www/LocalFileSystem.js: -------------------------------------------------------------------------------- 1 | cordova.define("cordova-plugin-file.LocalFileSystem", function(require, exports, module) { /* 2 | * 3 | * Licensed to the Apache Software Foundation (ASF) under one 4 | * or more contributor license agreements. See the NOTICE file 5 | * distributed with this work for additional information 6 | * regarding copyright ownership. The ASF licenses this file 7 | * to you under the Apache License, Version 2.0 (the 8 | * "License"); you may not use this file except in compliance 9 | * with the License. You may obtain a copy of the License at 10 | * 11 | * http://www.apache.org/licenses/LICENSE-2.0 12 | * 13 | * Unless required by applicable law or agreed to in writing, 14 | * software distributed under the License is distributed on an 15 | * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 16 | * KIND, either express or implied. See the License for the 17 | * specific language governing permissions and limitations 18 | * under the License. 19 | * 20 | */ 21 | 22 | exports.TEMPORARY = 0; 23 | exports.PERSISTENT = 1; 24 | 25 | }); 26 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/log.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0log" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'log' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/node_modules/q/queue.js: -------------------------------------------------------------------------------- 1 | 2 | var Q = require("./q"); 3 | 4 | module.exports = Queue; 5 | function Queue() { 6 | var ends = Q.defer(); 7 | var closed = Q.defer(); 8 | return { 9 | put: function (value) { 10 | var next = Q.defer(); 11 | ends.resolve({ 12 | head: value, 13 | tail: next.promise 14 | }); 15 | ends.resolve = next.resolve; 16 | }, 17 | get: function () { 18 | var result = ends.promise.get("head"); 19 | ends.promise = ends.promise.get("tail"); 20 | return result.fail(function (error) { 21 | closed.resolve(error); 22 | throw error; 23 | }); 24 | }, 25 | closed: closed.promise, 26 | close: function (error) { 27 | error = error || new Error("Can't get value from closed queue"); 28 | var end = {head: Q.reject(error)}; 29 | end.tail = end; 30 | ends.resolve(end); 31 | return closed.promise; 32 | } 33 | }; 34 | } 35 | 36 | -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/run.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0run" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'run' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /MIT-LICENSE.txt: -------------------------------------------------------------------------------- 1 | Copyright 2013 OutSystems and other contributors, 2 | httpwww.outsystems.com 3 | 4 | Permission is hereby granted, free of charge, to any person obtaining 5 | a copy of this software and associated documentation files (the 6 | Software), to deal in the Software without restriction, including 7 | without limitation the rights to use, copy, modify, merge, publish, 8 | distribute, sublicense, andor sell copies of the Software, and to 9 | permit persons to whom the Software is furnished to do so, subject to 10 | the following conditions 11 | 12 | The above copyright notice and this permission notice shall be 13 | included in all copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, 16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 17 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE 19 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION 20 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION 21 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/build.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0build" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'build' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/platforms/android/cordova/clean.bat: -------------------------------------------------------------------------------- 1 | :: Licensed to the Apache Software Foundation (ASF) under one 2 | :: or more contributor license agreements. See the NOTICE file 3 | :: distributed with this work for additional information 4 | :: regarding copyright ownership. The ASF licenses this file 5 | :: to you under the Apache License, Version 2.0 (the 6 | :: "License"); you may not use this file except in compliance 7 | :: with the License. You may obtain a copy of the License at 8 | :: 9 | :: http://www.apache.org/licenses/LICENSE-2.0 10 | :: 11 | :: Unless required by applicable law or agreed to in writing, 12 | :: software distributed under the License is distributed on an 13 | :: "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY 14 | :: KIND, either express or implied. See the License for the 15 | :: specific language governing permissions and limitations 16 | :: under the License. 17 | 18 | @ECHO OFF 19 | SET script_path="%~dp0clean" 20 | IF EXIST %script_path% ( 21 | node %script_path% %* 22 | ) ELSE ( 23 | ECHO. 24 | ECHO ERROR: Could not find 'clean' script in 'cordova' folder, aborting...>&2 25 | EXIT /B 1 26 | ) -------------------------------------------------------------------------------- /outsystems-app-android/Outsystems/plugins/com.phonegap.plugins.barcodescanner/src/android/LibraryProject/src/com/google/zxing/ResultPointCallback.java: -------------------------------------------------------------------------------- 1 | /* 2 | * Copyright 2009 ZXing authors 3 | * 4 | * Licensed under the Apache License, Version 2.0 (the "License"); 5 | * you may not use this file except in compliance with the License. 6 | * You may obtain a copy of the License at 7 | * 8 | * http://www.apache.org/licenses/LICENSE-2.0 9 | * 10 | * Unless required by applicable law or agreed to in writing, software 11 | * distributed under the License is distributed on an "AS IS" BASIS, 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 | * See the License for the specific language governing permissions and 14 | * limitations under the License. 15 | */ 16 | 17 | package com.google.zxing; 18 | 19 | /** 20 | * Callback which is invoked when a possible result point (significant 21 | * point in the barcode image such as a corner) is found. 22 | * 23 | * @see DecodeHintType#NEED_RESULT_POINT_CALLBACK 24 | */ 25 | public interface ResultPointCallback { 26 | 27 | void foundPossibleResultPoint(ResultPoint point); 28 | 29 | } 30 | --------------------------------------------------------------------------------