├── .gitignore ├── LICENSE.txt ├── README.md ├── android ├── v1 │ ├── AndroidManifest.xml │ ├── README.md │ ├── ant.properties │ ├── build.xml │ ├── ic_launcher-web.png │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── bg.png │ │ │ ├── bolt.png │ │ │ ├── button_camera.png │ │ │ ├── button_camera_pressed.png │ │ │ ├── button_change_currency.png │ │ │ ├── button_change_currency_pressed.png │ │ │ ├── button_orange.png │ │ │ ├── button_orange_pressed.png │ │ │ ├── currency_button.xml │ │ │ ├── gray_bolt.png │ │ │ ├── green_checkmark.png │ │ │ ├── header_bar_bg.png │ │ │ ├── ic_launcher.png │ │ │ ├── icon.png │ │ │ ├── logo.png │ │ │ ├── orange_button.xml │ │ │ ├── overlay_logo.png │ │ │ ├── paypal_logo.png │ │ │ ├── red_cross.png │ │ │ ├── text_field_bg.png │ │ │ └── text_field_tall_bg.png │ │ ├── drawable-ldpi │ │ │ ├── icon.png │ │ │ └── overlay_logo.png │ │ ├── drawable-mdpi │ │ │ ├── bolt.png │ │ │ ├── gray_bolt.png │ │ │ ├── ic_launcher.png │ │ │ └── overlay_logo.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── icon.png │ │ ├── drawable-xxhdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ ├── home.xml │ │ │ └── result.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── pphtest │ │ ├── MainActivity.java │ │ └── ResultActivity.java └── v2 │ ├── .gitignore │ ├── android_pph_sample │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.txt │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── paypal │ │ │ └── here │ │ │ └── sample │ │ │ ├── AddItem.java │ │ │ ├── Invoice.java │ │ │ ├── Item.java │ │ │ └── PayPalHereLauncher.java │ │ └── res │ │ ├── drawable-hdpi │ │ └── icon.png │ │ ├── drawable-ldpi │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ └── icon.png │ │ ├── drawable-xhdpi │ │ └── ic_launcher.png │ │ ├── layout │ │ ├── add_item.xml │ │ └── paypal_here_launcher.xml │ │ └── values │ │ ├── strings.xml │ │ └── styles.xml │ ├── build.gradle │ ├── build │ └── intermediates │ │ └── model_data.bin │ ├── gradle.properties │ ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── docs ├── OrderPaymentStepCart.png ├── OrderPaymentStepComplete.png ├── OrderPaymentStepSelectPayment.png ├── README.md └── sample.html ├── ios ├── PPHere.xcodeproj │ └── project.pbxproj ├── PPHere │ ├── Default-568h@2x.png │ ├── Default.png │ ├── Default@2x.png │ ├── JSONKit.h │ ├── JSONKit.m │ ├── PPAppDelegate.h │ ├── PPAppDelegate.m │ ├── PPHere-Info.plist │ ├── PPHere-Prefix.pch │ ├── PPViewController.h │ ├── PPViewController.m │ ├── developer.png │ ├── en.lproj │ │ ├── InfoPlist.strings │ │ └── MainStoryboard.storyboard │ └── main.m └── README.md └── web ├── README.md ├── css ├── bootstrap-responsive.min.css ├── bootstrap.min.css └── main.css ├── img ├── glyphicons-halflings-white.png ├── glyphicons-halflings.png └── sphero.jpg ├── index.html └── js ├── angular.min.js ├── bootstrap.js ├── bootstrap.min.js └── controller.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/README.md -------------------------------------------------------------------------------- /android/v1/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/AndroidManifest.xml -------------------------------------------------------------------------------- /android/v1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/README.md -------------------------------------------------------------------------------- /android/v1/ant.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/ant.properties -------------------------------------------------------------------------------- /android/v1/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/build.xml -------------------------------------------------------------------------------- /android/v1/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/ic_launcher-web.png -------------------------------------------------------------------------------- /android/v1/proguard-project.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/proguard-project.txt -------------------------------------------------------------------------------- /android/v1/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/project.properties -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/bg.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/bolt.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/button_camera.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/button_camera.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/button_camera_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/button_camera_pressed.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/button_change_currency.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/button_change_currency.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/button_change_currency_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/button_change_currency_pressed.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/button_orange.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/button_orange.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/button_orange_pressed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/button_orange_pressed.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/currency_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/currency_button.xml -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/gray_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/gray_bolt.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/green_checkmark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/green_checkmark.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/header_bar_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/header_bar_bg.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/orange_button.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/orange_button.xml -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/overlay_logo.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/paypal_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/paypal_logo.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/red_cross.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/red_cross.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/text_field_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/text_field_bg.png -------------------------------------------------------------------------------- /android/v1/res/drawable-hdpi/text_field_tall_bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-hdpi/text_field_tall_bg.png -------------------------------------------------------------------------------- /android/v1/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /android/v1/res/drawable-ldpi/overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-ldpi/overlay_logo.png -------------------------------------------------------------------------------- /android/v1/res/drawable-mdpi/bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-mdpi/bolt.png -------------------------------------------------------------------------------- /android/v1/res/drawable-mdpi/gray_bolt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-mdpi/gray_bolt.png -------------------------------------------------------------------------------- /android/v1/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v1/res/drawable-mdpi/overlay_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-mdpi/overlay_logo.png -------------------------------------------------------------------------------- /android/v1/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v1/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /android/v1/res/drawable-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/drawable-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v1/res/layout/home.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/layout/home.xml -------------------------------------------------------------------------------- /android/v1/res/layout/result.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/layout/result.xml -------------------------------------------------------------------------------- /android/v1/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/res/values/strings.xml -------------------------------------------------------------------------------- /android/v1/src/com/pphtest/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/src/com/pphtest/MainActivity.java -------------------------------------------------------------------------------- /android/v1/src/com/pphtest/ResultActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v1/src/com/pphtest/ResultActivity.java -------------------------------------------------------------------------------- /android/v2/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/.gitignore -------------------------------------------------------------------------------- /android/v2/android_pph_sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /android/v2/android_pph_sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/build.gradle -------------------------------------------------------------------------------- /android/v2/android_pph_sample/proguard-rules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/proguard-rules.txt -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/AddItem.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/AddItem.java -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/Invoice.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/Invoice.java -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/Item.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/Item.java -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/PayPalHereLauncher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/java/com/paypal/here/sample/PayPalHereLauncher.java -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/layout/add_item.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/layout/add_item.xml -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/layout/paypal_here_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/layout/paypal_here_launcher.xml -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /android/v2/android_pph_sample/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/android_pph_sample/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /android/v2/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/build.gradle -------------------------------------------------------------------------------- /android/v2/build/intermediates/model_data.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/build/intermediates/model_data.bin -------------------------------------------------------------------------------- /android/v2/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/gradle.properties -------------------------------------------------------------------------------- /android/v2/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/v2/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/v2/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/gradlew -------------------------------------------------------------------------------- /android/v2/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/android/v2/gradlew.bat -------------------------------------------------------------------------------- /android/v2/settings.gradle: -------------------------------------------------------------------------------- 1 | include ':android_pph_sample' 2 | -------------------------------------------------------------------------------- /docs/OrderPaymentStepCart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/docs/OrderPaymentStepCart.png -------------------------------------------------------------------------------- /docs/OrderPaymentStepComplete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/docs/OrderPaymentStepComplete.png -------------------------------------------------------------------------------- /docs/OrderPaymentStepSelectPayment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/docs/OrderPaymentStepSelectPayment.png -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/sample.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/docs/sample.html -------------------------------------------------------------------------------- /ios/PPHere.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ios/PPHere/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/Default-568h@2x.png -------------------------------------------------------------------------------- /ios/PPHere/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/Default.png -------------------------------------------------------------------------------- /ios/PPHere/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/Default@2x.png -------------------------------------------------------------------------------- /ios/PPHere/JSONKit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/JSONKit.h -------------------------------------------------------------------------------- /ios/PPHere/JSONKit.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/JSONKit.m -------------------------------------------------------------------------------- /ios/PPHere/PPAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/PPAppDelegate.h -------------------------------------------------------------------------------- /ios/PPHere/PPAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/PPAppDelegate.m -------------------------------------------------------------------------------- /ios/PPHere/PPHere-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/PPHere-Info.plist -------------------------------------------------------------------------------- /ios/PPHere/PPHere-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/PPHere-Prefix.pch -------------------------------------------------------------------------------- /ios/PPHere/PPViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/PPViewController.h -------------------------------------------------------------------------------- /ios/PPHere/PPViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/PPViewController.m -------------------------------------------------------------------------------- /ios/PPHere/developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/developer.png -------------------------------------------------------------------------------- /ios/PPHere/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /ios/PPHere/en.lproj/MainStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/en.lproj/MainStoryboard.storyboard -------------------------------------------------------------------------------- /ios/PPHere/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/PPHere/main.m -------------------------------------------------------------------------------- /ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/ios/README.md -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/README.md -------------------------------------------------------------------------------- /web/css/bootstrap-responsive.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/css/bootstrap-responsive.min.css -------------------------------------------------------------------------------- /web/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/css/bootstrap.min.css -------------------------------------------------------------------------------- /web/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/css/main.css -------------------------------------------------------------------------------- /web/img/glyphicons-halflings-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/img/glyphicons-halflings-white.png -------------------------------------------------------------------------------- /web/img/glyphicons-halflings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/img/glyphicons-halflings.png -------------------------------------------------------------------------------- /web/img/sphero.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/img/sphero.jpg -------------------------------------------------------------------------------- /web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/index.html -------------------------------------------------------------------------------- /web/js/angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/js/angular.min.js -------------------------------------------------------------------------------- /web/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/js/bootstrap.js -------------------------------------------------------------------------------- /web/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/js/bootstrap.min.js -------------------------------------------------------------------------------- /web/js/controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/paypal/here-sideloader-api-samples/HEAD/web/js/controller.js --------------------------------------------------------------------------------