├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .gitignore ├── .husky ├── .gitignore └── pre-commit ├── .npsrc ├── .nxignore ├── .prettierignore ├── .prettierrc ├── .travis.yml ├── LICENSE ├── README.md ├── apps ├── demo-angular │ ├── .eslintrc.json │ ├── .gitignore │ ├── nativescript.config.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ ├── src │ │ ├── app-routing.module.ts │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ ├── app.scss │ │ ├── home.component.html │ │ ├── home.component.ts │ │ ├── main.ts │ │ ├── plugin-demos │ │ │ ├── .gitkeep │ │ │ ├── nativescript-airship-adm.component.html │ │ │ ├── nativescript-airship-adm.component.ts │ │ │ ├── nativescript-airship-adm.module.ts │ │ │ ├── nativescript-airship-fcm.component.html │ │ │ ├── nativescript-airship-fcm.component.ts │ │ │ ├── nativescript-airship-fcm.module.ts │ │ │ ├── nativescript-airship-hms.component.html │ │ │ ├── nativescript-airship-hms.component.ts │ │ │ ├── nativescript-airship-hms.module.ts │ │ │ ├── nativescript-airship.component.html │ │ │ ├── nativescript-airship.component.ts │ │ │ ├── nativescript-airship.module.ts │ │ │ ├── nativescript-appcues.component.html │ │ │ ├── nativescript-appcues.component.ts │ │ │ ├── nativescript-appcues.module.ts │ │ │ ├── nativescript-aptabase.component.html │ │ │ ├── nativescript-aptabase.component.ts │ │ │ ├── nativescript-aptabase.module.ts │ │ │ ├── nativescript-auth0.component.html │ │ │ ├── nativescript-auth0.component.ts │ │ │ ├── nativescript-auth0.module.ts │ │ │ ├── nativescript-barcodescanner.component.html │ │ │ ├── nativescript-barcodescanner.component.ts │ │ │ ├── nativescript-barcodescanner.module.ts │ │ │ ├── nativescript-blur.component.html │ │ │ ├── nativescript-blur.component.ts │ │ │ ├── nativescript-blur.module.ts │ │ │ ├── nativescript-camera-plus.component.html │ │ │ ├── nativescript-camera-plus.component.ts │ │ │ ├── nativescript-camera-plus.module.ts │ │ │ ├── nativescript-cardview.component.html │ │ │ ├── nativescript-cardview.component.ts │ │ │ ├── nativescript-cardview.module.ts │ │ │ ├── nativescript-carousel.component.html │ │ │ ├── nativescript-carousel.component.ts │ │ │ ├── nativescript-carousel.module.ts │ │ │ ├── nativescript-checkbox.component.html │ │ │ ├── nativescript-checkbox.component.ts │ │ │ ├── nativescript-checkbox.module.ts │ │ │ ├── nativescript-dynatrace.component.html │ │ │ ├── nativescript-dynatrace.component.ts │ │ │ ├── nativescript-dynatrace.module.ts │ │ │ ├── nativescript-embrace.component.html │ │ │ ├── nativescript-embrace.component.ts │ │ │ ├── nativescript-embrace.module.ts │ │ │ ├── nativescript-exoplayer.component.html │ │ │ ├── nativescript-exoplayer.component.ts │ │ │ ├── nativescript-exoplayer.module.ts │ │ │ ├── nativescript-fancyalert.component.html │ │ │ ├── nativescript-fancyalert.component.ts │ │ │ ├── nativescript-fancyalert.module.ts │ │ │ ├── nativescript-filterable-listpicker.component.html │ │ │ ├── nativescript-filterable-listpicker.component.ts │ │ │ ├── nativescript-filterable-listpicker.module.ts │ │ │ ├── nativescript-freshchat.component.html │ │ │ ├── nativescript-freshchat.component.ts │ │ │ ├── nativescript-freshchat.module.ts │ │ │ ├── nativescript-input-mask.component.html │ │ │ ├── nativescript-input-mask.component.ts │ │ │ ├── nativescript-input-mask.module.ts │ │ │ ├── nativescript-intercom.component.html │ │ │ ├── nativescript-intercom.component.ts │ │ │ ├── nativescript-intercom.module.ts │ │ │ ├── nativescript-loading-indicator.component.html │ │ │ ├── nativescript-loading-indicator.component.ts │ │ │ ├── nativescript-loading-indicator.module.ts │ │ │ ├── nativescript-onfido.component.html │ │ │ ├── nativescript-onfido.component.ts │ │ │ ├── nativescript-onfido.module.ts │ │ │ ├── nativescript-persona.component.html │ │ │ ├── nativescript-persona.component.ts │ │ │ ├── nativescript-persona.module.ts │ │ │ ├── nativescript-plaid.component.html │ │ │ ├── nativescript-plaid.component.ts │ │ │ ├── nativescript-plaid.module.ts │ │ │ ├── nativescript-qr.component.html │ │ │ ├── nativescript-qr.component.ts │ │ │ ├── nativescript-qr.module.ts │ │ │ ├── nativescript-tracking-transparency.component.html │ │ │ ├── nativescript-tracking-transparency.component.ts │ │ │ ├── nativescript-tracking-transparency.module.ts │ │ │ ├── nativescript-walletconnect.component.html │ │ │ ├── nativescript-walletconnect.component.ts │ │ │ ├── nativescript-walletconnect.module.ts │ │ │ ├── nativescript-web-server.component.html │ │ │ ├── nativescript-web-server.component.ts │ │ │ └── nativescript-web-server.module.ts │ │ └── polyfills.ts │ ├── tsconfig.json │ └── webpack.config.js └── demo │ ├── .eslintrc.json │ ├── .gitignore │ ├── nativescript.config.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ ├── src │ ├── app-root.xml │ ├── app.scss │ ├── app.ts │ ├── i18n │ │ └── en.default.json │ ├── main-page.ts │ ├── main-page.xml │ ├── main-view-model.ts │ ├── plugin-demos │ │ ├── .gitkeep │ │ ├── nativescript-airship-adm.ts │ │ ├── nativescript-airship-adm.xml │ │ ├── nativescript-airship-fcm.ts │ │ ├── nativescript-airship-fcm.xml │ │ ├── nativescript-airship-hms.ts │ │ ├── nativescript-airship-hms.xml │ │ ├── nativescript-airship.ts │ │ ├── nativescript-airship.xml │ │ ├── nativescript-appcues.ts │ │ ├── nativescript-appcues.xml │ │ ├── nativescript-aptabase.ts │ │ ├── nativescript-aptabase.xml │ │ ├── nativescript-auth0.ts │ │ ├── nativescript-auth0.xml │ │ ├── nativescript-barcodescanner.ts │ │ ├── nativescript-barcodescanner.xml │ │ ├── nativescript-blur.ts │ │ ├── nativescript-blur.xml │ │ ├── nativescript-camera-plus.ts │ │ ├── nativescript-camera-plus.xml │ │ ├── nativescript-cardview.ts │ │ ├── nativescript-cardview.xml │ │ ├── nativescript-carousel.ts │ │ ├── nativescript-carousel.xml │ │ ├── nativescript-checkbox.ts │ │ ├── nativescript-checkbox.xml │ │ ├── nativescript-dynatrace.ts │ │ ├── nativescript-dynatrace.xml │ │ ├── nativescript-embrace.ts │ │ ├── nativescript-embrace.xml │ │ ├── nativescript-exoplayer.ts │ │ ├── nativescript-exoplayer.xml │ │ ├── nativescript-fancyalert.ts │ │ ├── nativescript-fancyalert.xml │ │ ├── nativescript-filterable-listpicker.ts │ │ ├── nativescript-filterable-listpicker.xml │ │ ├── nativescript-freshchat.ts │ │ ├── nativescript-freshchat.xml │ │ ├── nativescript-input-mask.ts │ │ ├── nativescript-input-mask.xml │ │ ├── nativescript-intercom.ts │ │ ├── nativescript-intercom.xml │ │ ├── nativescript-loading-indicator.ts │ │ ├── nativescript-loading-indicator.xml │ │ ├── nativescript-onfido.ts │ │ ├── nativescript-onfido.xml │ │ ├── nativescript-persona.ts │ │ ├── nativescript-persona.xml │ │ ├── nativescript-plaid.ts │ │ ├── nativescript-plaid.xml │ │ ├── nativescript-qr.ts │ │ ├── nativescript-qr.xml │ │ ├── nativescript-tracking-transparency.ts │ │ ├── nativescript-tracking-transparency.xml │ │ ├── nativescript-walletconnect.ts │ │ ├── nativescript-walletconnect.xml │ │ ├── nativescript-web-server.ts │ │ └── nativescript-web-server.xml │ └── web_assets │ │ └── index.html │ ├── tsconfig.json │ └── webpack.config.js ├── jest.config.ts ├── nx.json ├── package.json ├── packages ├── .gitkeep ├── nativescript-airship-adm │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── platforms │ │ └── android │ │ │ └── include.gradle │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── nativescript-airship-fcm │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── android.d.ts ├── nativescript-airship-hms │ ├── .eslintrc.json │ ├── README.md │ ├── index.ts │ ├── package.json │ ├── platforms │ │ └── android │ │ │ └── include.gradle │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── android.d.ts ├── nativescript-airship │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ └── objc!AirshipKit.d.ts ├── nativescript-appcues │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── appcues │ │ │ │ │ └── Appcues.kt │ │ │ └── nativescript_appcues.aar │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── appcues-android.d.ts │ │ ├── koin-android.d.ts │ │ ├── koin-core.d.ts │ │ └── objc!AppcuesKit.d.ts ├── nativescript-aptabase │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── src │ │ │ └── NSCAptabase.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ └── objc!NSCAptabase.d.ts ├── nativescript-auth0 │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── nativescript.config.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── auth0 │ │ │ │ │ ├── Auth0.kt │ │ │ │ │ ├── Authentication.kt │ │ │ │ │ ├── CredentialsManager.kt │ │ │ │ │ ├── DecodedJWT.kt │ │ │ │ │ └── WebAuth.kt │ │ │ └── nativescript_auth0.aar │ │ └── ios │ │ │ └── src │ │ │ └── NSCAuth0.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ ├── auth0.android.d.ts │ │ └── ios.d.ts ├── nativescript-barcodescanner │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── native-src │ │ ├── build.ios.sh │ │ ├── build.sh │ │ └── ios │ │ │ ├── BarcodeScannerFramework.xcodeproj │ │ │ └── project.pbxproj │ │ │ ├── BarcodeScannerFramework │ │ │ ├── BarcodeScannerFramework.h │ │ │ ├── Info.plist │ │ │ └── beep.caf │ │ │ ├── QRCameraSwitchButton.h │ │ │ ├── QRCameraSwitchButton.m │ │ │ ├── QRCodeReader.h │ │ │ ├── QRCodeReader.m │ │ │ ├── QRCodeReaderDelegate.h │ │ │ ├── QRCodeReaderView.h │ │ │ ├── QRCodeReaderView.m │ │ │ ├── QRCodeReaderViewController.h │ │ │ ├── QRCodeReaderViewController.m │ │ │ ├── QRToggleTorchButton.h │ │ │ ├── QRToggleTorchButton.m │ │ │ └── build.sh │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── AndroidManifest.xml │ │ │ ├── barcodescanner-release-2.1.6.aar │ │ │ └── nativescript_barcodescanner.aar │ │ └── ios │ │ │ └── BarcodeScannerFramework.xcframework │ │ │ ├── Info.plist │ │ │ ├── ios-arm64 │ │ │ ├── BarcodeScannerFramework.framework │ │ │ │ ├── BarcodeScannerFramework │ │ │ │ ├── Headers │ │ │ │ │ ├── BarcodeScannerFramework.h │ │ │ │ │ ├── QRCameraSwitchButton.h │ │ │ │ │ ├── QRCodeReader.h │ │ │ │ │ ├── QRCodeReaderDelegate.h │ │ │ │ │ ├── QRCodeReaderView.h │ │ │ │ │ ├── QRCodeReaderViewController.h │ │ │ │ │ └── QRToggleTorchButton.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ └── module.modulemap │ │ │ │ └── beep.caf │ │ │ └── dSYMs │ │ │ │ └── BarcodeScannerFramework.framework.dSYM │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── BarcodeScannerFramework │ │ │ └── ios-arm64_x86_64-simulator │ │ │ ├── BarcodeScannerFramework.framework │ │ │ ├── BarcodeScannerFramework │ │ │ ├── Headers │ │ │ │ ├── BarcodeScannerFramework.h │ │ │ │ ├── QRCameraSwitchButton.h │ │ │ │ ├── QRCodeReader.h │ │ │ │ ├── QRCodeReaderDelegate.h │ │ │ │ ├── QRCodeReaderView.h │ │ │ │ ├── QRCodeReaderViewController.h │ │ │ │ └── QRToggleTorchButton.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ └── module.modulemap │ │ │ ├── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── beep.caf │ │ │ └── dSYMs │ │ │ └── BarcodeScannerFramework.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── BarcodeScannerFramework │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── BarcodeScannerFramework.d.ts ├── nativescript-blur │ ├── .eslintrc.json │ ├── README.md │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ └── android │ │ │ └── blurkit-1.1.1.aar │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── android.d.ts ├── nativescript-camera-plus │ ├── .eslintrc.json │ ├── README.md │ ├── angular │ │ ├── .eslintrc.json │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── tsconfig.angular.json │ │ └── tsconfig.json │ ├── common.ts │ ├── events.ts │ ├── helpers.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── nativescript_camera_plus.aar │ │ │ └── res │ │ │ │ ├── drawable-v21 │ │ │ │ ├── ic_camera_white.xml │ │ │ │ ├── ic_flash_off_white.xml │ │ │ │ └── ic_flash_on_white.xml │ │ │ │ └── drawable │ │ │ │ ├── ic_camera_white.xml │ │ │ │ ├── ic_flash_off_white.xml │ │ │ │ ├── ic_flash_on_white.xml │ │ │ │ ├── ic_photo_library_white.xml │ │ │ │ └── ic_switch_camera_white.xml │ │ └── ios │ │ │ ├── Info.plist │ │ │ ├── Podfile │ │ │ └── src │ │ │ └── NSCCamplusHelpers.swift │ ├── project.json │ ├── references.d.ts │ ├── selected-asset.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ ├── objc!QBImagePickerController.d.ts │ │ └── objc!SwiftyCam.d.ts ├── nativescript-cardview │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ └── android │ │ │ └── include.gradle │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── nativescript-carousel │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── objc!DKCarouselView.d.ts ├── nativescript-checkbox │ ├── .eslintrc.json │ ├── README.md │ ├── angular │ │ ├── .eslintrc.json │ │ ├── index.ts │ │ ├── ng-package.json │ │ ├── package.json │ │ ├── tsconfig.angular.json │ │ └── tsconfig.json │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── BEMCheckBox.d.ts ├── nativescript-dynatrace │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── hooks │ │ ├── before-checkForChanges.ts │ │ ├── before-watchPatterns.ts │ │ ├── index.ts │ │ └── tsconfig.json │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── postinstall.js │ ├── preuninstall.js │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ ├── nativescript.d.ts │ │ └── objc!Dynatrace.d.ts ├── nativescript-embrace │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── hooks │ │ ├── before-checkForChanges.ts │ │ ├── before-watchPatterns.ts │ │ ├── index.ts │ │ └── tsconfig.json │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── postinstall.js │ ├── preuninstall.js │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ ├── nativescript.d.ts │ │ └── objc!Embrace.d.ts ├── nativescript-exoplayer │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── subtitle-source │ │ ├── common.ts │ │ ├── index.android.ts │ │ ├── index.d.ts │ │ └── index.ios.ts │ ├── tsconfig.json │ ├── typings │ │ └── exoplayer.d.ts │ └── video-source │ │ ├── common.ts │ │ ├── index.android.ts │ │ ├── index.d.ts │ │ └── index.ios.ts ├── nativescript-fancyalert │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── objc!SCLAlertView_Objective_C.d.ts ├── nativescript-filterable-listpicker │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── nativescript-freshchat │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ └── objc!FreshchatSDK.d.ts ├── nativescript-input-mask │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ ├── Podfile │ │ │ ├── src │ │ │ └── InputMaskUtils.swift │ │ │ └── typings │ │ │ └── InputMaskUtils.d.ts │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android-declarations.d.ts │ │ ├── android.d.ts │ │ └── objc!InputMask.d.ts ├── nativescript-intercom │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── nativescript.config.ts │ ├── package.json │ ├── platforms │ │ └── android │ │ │ └── include.gradle │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android-sdk-base.d.ts │ │ ├── objc!Intercom.d.ts │ │ └── objc!Intercom_Private.d.ts ├── nativescript-loading-indicator │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── nativescript.config.ts │ ├── package.json │ ├── platforms │ │ └── android │ │ │ ├── AndroidManifest.xml │ │ │ ├── nativescript_loading_indicator.aar │ │ │ └── res │ │ │ └── drawable │ │ │ ├── circle_shape.xml │ │ │ ├── circular_progress_bar.xml │ │ │ └── circular_progress_bar_thick.xml │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ └── objc!MBProgressHUD.d.ts ├── nativescript-onfido │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ ├── typings │ │ ├── android-onfido-capture-sdk.d.ts │ │ └── objc!Onfido.d.ts │ └── utils.ts ├── nativescript-persona │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── persona │ │ │ │ │ └── NSCPersona.kt │ │ │ └── nativescript_persona.aar │ │ └── ios │ │ │ ├── Podfile │ │ │ └── src │ │ │ └── NSCPersona.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ └── objc!nsswiftsupport.d.ts ├── nativescript-plaid │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── demo.gif │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── include.gradle │ │ └── ios │ │ │ └── Podfile │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ └── typings │ │ ├── android.d.ts │ │ └── objc!LinkKit.d.ts ├── nativescript-qr │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ └── qr-release.aar │ │ └── ios │ │ │ ├── Info.plist │ │ │ └── QrNative.xcframework │ │ │ ├── Info.plist │ │ │ ├── ios-arm64 │ │ │ ├── QrNative.framework │ │ │ │ ├── Headers │ │ │ │ │ ├── QrNative-Swift.h │ │ │ │ │ ├── QrNative.h │ │ │ │ │ └── qr_native.h │ │ │ │ ├── Info.plist │ │ │ │ ├── Modules │ │ │ │ │ ├── QrNative.swiftmodule │ │ │ │ │ │ ├── Project │ │ │ │ │ │ │ ├── arm64-apple-ios.swiftsourceinfo │ │ │ │ │ │ │ └── arm64.swiftsourceinfo │ │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ │ ├── arm64-apple-ios.swiftinterface │ │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ │ └── arm64.swiftinterface │ │ │ │ │ └── module.modulemap │ │ │ │ └── QrNative │ │ │ └── dSYMs │ │ │ │ └── QrNative.framework.dSYM │ │ │ │ └── Contents │ │ │ │ ├── Info.plist │ │ │ │ └── Resources │ │ │ │ └── DWARF │ │ │ │ └── QrNative │ │ │ └── ios-arm64_x86_64-simulator │ │ │ ├── QrNative.framework │ │ │ ├── Headers │ │ │ │ ├── QrNative-Swift.h │ │ │ │ ├── QrNative.h │ │ │ │ └── qr_native.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── QrNative.swiftmodule │ │ │ │ │ ├── Project │ │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftsourceinfo │ │ │ │ │ │ ├── arm64.swiftsourceinfo │ │ │ │ │ │ ├── x86_64-apple-ios-simulator.swiftsourceinfo │ │ │ │ │ │ └── x86_64.swiftsourceinfo │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ │ ├── arm64.swiftdoc │ │ │ │ │ ├── arm64.swiftinterface │ │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ │ ├── x86_64-apple-ios-simulator.swiftinterface │ │ │ │ │ ├── x86_64.swiftdoc │ │ │ │ │ └── x86_64.swiftinterface │ │ │ │ └── module.modulemap │ │ │ ├── QrNative │ │ │ └── _CodeSignature │ │ │ │ └── CodeResources │ │ │ └── dSYMs │ │ │ └── QrNative.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ └── DWARF │ │ │ └── QrNative │ ├── project.json │ ├── references.d.ts │ ├── src-native │ │ ├── qr-android │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ │ ├── .gitignore │ │ │ │ ├── .name │ │ │ │ ├── compiler.xml │ │ │ │ ├── gradle.xml │ │ │ │ ├── misc.xml │ │ │ │ └── vcs.xml │ │ │ ├── app │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── io │ │ │ │ │ │ └── nstudio │ │ │ │ │ │ └── nativescript │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── qrdemo │ │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ ├── java │ │ │ │ │ │ └── io │ │ │ │ │ │ │ └── nstudio │ │ │ │ │ │ │ └── nativescript │ │ │ │ │ │ │ └── plugins │ │ │ │ │ │ │ └── qrdemo │ │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ │ └── res │ │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ │ ├── drawable │ │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ │ ├── layout │ │ │ │ │ │ └── activity_main.xml │ │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ │ ├── values-night │ │ │ │ │ │ └── themes.xml │ │ │ │ │ │ └── values │ │ │ │ │ │ ├── colors.xml │ │ │ │ │ │ ├── strings.xml │ │ │ │ │ │ └── themes.xml │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── nativescript │ │ │ │ │ └── plugins │ │ │ │ │ └── qrdemo │ │ │ │ │ └── ExampleUnitTest.kt │ │ │ ├── build.gradle │ │ │ ├── gradle.properties │ │ │ ├── gradle │ │ │ │ └── wrapper │ │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ │ └── gradle-wrapper.properties │ │ │ ├── gradlew │ │ │ ├── gradlew.bat │ │ │ ├── qr │ │ │ │ ├── .gitignore │ │ │ │ ├── build.gradle │ │ │ │ ├── consumer-rules.pro │ │ │ │ ├── proguard-rules.pro │ │ │ │ └── src │ │ │ │ │ ├── androidTest │ │ │ │ │ └── java │ │ │ │ │ │ └── io │ │ │ │ │ │ └── nstudio │ │ │ │ │ │ └── nativescript │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── qr │ │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ │ ├── main │ │ │ │ │ ├── AndroidManifest.xml │ │ │ │ │ └── java │ │ │ │ │ │ └── io │ │ │ │ │ │ └── nstudio │ │ │ │ │ │ └── nativescript │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── qr │ │ │ │ │ │ └── Qr.kt │ │ │ │ │ └── test │ │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── nativescript │ │ │ │ │ └── plugins │ │ │ │ │ └── qr │ │ │ │ │ └── ExampleUnitTest.kt │ │ │ └── settings.gradle │ │ ├── qr-ios │ │ │ ├── .gitignore │ │ │ ├── QrNative.xcodeproj │ │ │ │ ├── project.pbxproj │ │ │ │ ├── project.xcworkspace │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── triniwiz.xcuserdatad │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ └── xcuserdata │ │ │ │ │ └── triniwiz.xcuserdatad │ │ │ │ │ └── xcschemes │ │ │ │ │ └── xcschememanagement.plist │ │ │ ├── QrNative │ │ │ │ ├── Qr.swift │ │ │ │ ├── QrNative.docc │ │ │ │ │ └── QrNative.md │ │ │ │ ├── QrNative.h │ │ │ │ ├── QrNative.xcodeproj │ │ │ │ │ ├── project.pbxproj │ │ │ │ │ ├── project.xcworkspace │ │ │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ │ │ ├── xcshareddata │ │ │ │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ │ └── triniwiz.xcuserdatad │ │ │ │ │ │ │ └── UserInterfaceState.xcuserstate │ │ │ │ │ └── xcuserdata │ │ │ │ │ │ └── triniwiz.xcuserdatad │ │ │ │ │ │ └── xcschemes │ │ │ │ │ │ └── xcschememanagement.plist │ │ │ │ ├── QrNative │ │ │ │ │ ├── QrNative.docc │ │ │ │ │ │ └── QrNative.md │ │ │ │ │ └── QrNative.h │ │ │ │ ├── QrNativeTests │ │ │ │ │ └── QrNativeTests.swift │ │ │ │ └── include │ │ │ │ │ └── qr_native.h │ │ │ ├── QrNativeTests │ │ │ │ └── QrNativeTests.swift │ │ │ └── build.sh │ │ └── qr-native │ │ │ ├── .gitignore │ │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── modules.xml │ │ │ ├── qr-native.iml │ │ │ └── vcs.xml │ │ │ ├── Cargo.toml │ │ │ ├── build.rs │ │ │ ├── cbindgen.toml │ │ │ ├── src │ │ │ ├── android.rs │ │ │ ├── bitmap.rs │ │ │ ├── common.rs │ │ │ ├── ios.rs │ │ │ └── lib.rs │ │ │ └── wrapper.h │ └── tsconfig.json ├── nativescript-tracking-transparency │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── project.json │ ├── references.d.ts │ └── tsconfig.json ├── nativescript-walletconnect │ ├── .eslintrc.json │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ │ ├── android │ │ │ ├── AndroidManifest.xml │ │ │ ├── include.gradle │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── walletconnect │ │ │ │ │ ├── Utils.kt │ │ │ │ │ └── WCClientImpl.kt │ │ │ ├── nativescript_walletconnect.aar │ │ │ └── wallet-core-3.0.4.aar │ │ └── ios │ │ │ ├── Podfile │ │ │ └── src │ │ │ ├── NSCWallConnectTypes.swift │ │ │ └── NSCWallectConnect.swift │ ├── project.json │ ├── references.d.ts │ ├── tsconfig.json │ ├── typings │ │ ├── android-trust-wallet.d.ts │ │ ├── android.d.ts │ │ ├── objc!WalletCore.d.ts │ │ └── objc!nsswiftsupport.d.ts │ └── utils.ts └── nativescript-web-server │ ├── .eslintrc.json │ ├── CHANGELOG.md │ ├── README.md │ ├── common.ts │ ├── index.android.ts │ ├── index.d.ts │ ├── index.ios.ts │ ├── package.json │ ├── platforms │ ├── android │ │ └── webserver-release.aar │ └── ios │ │ └── WebServerNative.xcframework │ │ ├── Info.plist │ │ ├── ios-arm64 │ │ ├── WebServerNative.framework │ │ │ ├── Headers │ │ │ │ ├── WebServerNative-Swift.h │ │ │ │ ├── WebServerNative.h │ │ │ │ └── web_server_native.h │ │ │ ├── Info.plist │ │ │ ├── Modules │ │ │ │ ├── WebServerNative.swiftmodule │ │ │ │ │ ├── Project │ │ │ │ │ │ └── arm64-apple-ios.swiftsourceinfo │ │ │ │ │ ├── arm64-apple-ios.abi.json │ │ │ │ │ ├── arm64-apple-ios.private.swiftinterface │ │ │ │ │ ├── arm64-apple-ios.swiftdoc │ │ │ │ │ └── arm64-apple-ios.swiftinterface │ │ │ │ └── module.modulemap │ │ │ └── WebServerNative │ │ └── dSYMs │ │ │ └── WebServerNative.framework.dSYM │ │ │ └── Contents │ │ │ ├── Info.plist │ │ │ └── Resources │ │ │ ├── DWARF │ │ │ └── WebServerNative │ │ │ └── Relocations │ │ │ └── aarch64 │ │ │ └── WebServerNative.yml │ │ └── ios-arm64_x86_64-simulator │ │ ├── WebServerNative.framework │ │ ├── Headers │ │ │ ├── WebServerNative-Swift.h │ │ │ ├── WebServerNative.h │ │ │ └── web_server_native.h │ │ ├── Info.plist │ │ ├── Modules │ │ │ ├── WebServerNative.swiftmodule │ │ │ │ ├── Project │ │ │ │ │ ├── arm64-apple-ios-simulator.swiftsourceinfo │ │ │ │ │ └── x86_64-apple-ios-simulator.swiftsourceinfo │ │ │ │ ├── arm64-apple-ios-simulator.abi.json │ │ │ │ ├── arm64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── arm64-apple-ios-simulator.swiftdoc │ │ │ │ ├── arm64-apple-ios-simulator.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.abi.json │ │ │ │ ├── x86_64-apple-ios-simulator.private.swiftinterface │ │ │ │ ├── x86_64-apple-ios-simulator.swiftdoc │ │ │ │ └── x86_64-apple-ios-simulator.swiftinterface │ │ │ └── module.modulemap │ │ ├── WebServerNative │ │ └── _CodeSignature │ │ │ └── CodeResources │ │ └── dSYMs │ │ └── WebServerNative.framework.dSYM │ │ └── Contents │ │ ├── Info.plist │ │ └── Resources │ │ ├── DWARF │ │ └── WebServerNative │ │ └── Relocations │ │ ├── aarch64 │ │ └── WebServerNative.yml │ │ └── x86_64 │ │ └── WebServerNative.yml │ ├── project.json │ ├── references.d.ts │ ├── src-native │ ├── web-server-android │ │ ├── .gitignore │ │ ├── .idea │ │ │ ├── .gitignore │ │ │ ├── .name │ │ │ ├── compiler.xml │ │ │ ├── deploymentTargetSelector.xml │ │ │ ├── gradle.xml │ │ │ ├── kotlinc.xml │ │ │ ├── migrations.xml │ │ │ ├── misc.xml │ │ │ ├── runConfigurations.xml │ │ │ └── vcs.xml │ │ ├── app │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── androidTest │ │ │ │ └── java │ │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── webserver │ │ │ │ │ └── webserverdemo │ │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ │ ├── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ │ └── io │ │ │ │ │ │ └── nstudio │ │ │ │ │ │ └── plugins │ │ │ │ │ │ └── webserver │ │ │ │ │ │ └── webserverdemo │ │ │ │ │ │ └── MainActivity.kt │ │ │ │ └── res │ │ │ │ │ ├── drawable-v24 │ │ │ │ │ └── ic_launcher_foreground.xml │ │ │ │ │ ├── drawable │ │ │ │ │ └── ic_launcher_background.xml │ │ │ │ │ ├── layout │ │ │ │ │ └── activity_main.xml │ │ │ │ │ ├── mipmap-anydpi-v26 │ │ │ │ │ ├── ic_launcher.xml │ │ │ │ │ └── ic_launcher_round.xml │ │ │ │ │ ├── mipmap-hdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-mdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ │ ├── ic_launcher.webp │ │ │ │ │ └── ic_launcher_round.webp │ │ │ │ │ ├── values-night │ │ │ │ │ └── themes.xml │ │ │ │ │ ├── values │ │ │ │ │ ├── colors.xml │ │ │ │ │ ├── strings.xml │ │ │ │ │ └── themes.xml │ │ │ │ │ └── xml │ │ │ │ │ ├── backup_rules.xml │ │ │ │ │ └── data_extraction_rules.xml │ │ │ │ └── test │ │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── nstudio │ │ │ │ └── plugins │ │ │ │ └── webserver │ │ │ │ └── webserverdemo │ │ │ │ └── ExampleUnitTest.kt │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ ├── libs.versions.toml │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── webserver │ │ │ ├── .gitignore │ │ │ ├── build.gradle │ │ │ ├── consumer-rules.pro │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ ├── androidTest │ │ │ └── java │ │ │ │ └── io │ │ │ │ └── nstudio │ │ │ │ └── plugins │ │ │ │ └── ExampleInstrumentedTest.kt │ │ │ ├── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ │ └── io │ │ │ │ │ └── nstudio │ │ │ │ │ └── plugins │ │ │ │ │ └── webserver │ │ │ │ │ ├── GC.kt │ │ │ │ │ ├── Server.kt │ │ │ │ │ └── websocket │ │ │ │ │ └── Server.kt │ │ │ └── jniLibs │ │ │ │ ├── arm64-v8a │ │ │ │ └── libwebservernative.so │ │ │ │ ├── armeabi-v7a │ │ │ │ └── libwebservernative.so │ │ │ │ ├── x86 │ │ │ │ └── libwebservernative.so │ │ │ │ └── x86_64 │ │ │ │ └── libwebservernative.so │ │ │ └── test │ │ │ └── java │ │ │ └── io │ │ │ └── nstudio │ │ │ └── plugins │ │ │ └── ExampleUnitTest.kt │ ├── web-server-ios │ │ ├── WebServerNative.xcodeproj │ │ │ └── project.pbxproj │ │ ├── WebServerNative │ │ │ ├── NSCServer.swift │ │ │ ├── NSCWebSocketServer.swift │ │ │ ├── WebServerNative.docc │ │ │ │ └── WebServerNative.md │ │ │ ├── WebServerNative.h │ │ │ └── include │ │ │ │ └── web_server_native.h │ │ ├── WebServerNativeTests │ │ │ └── WebServerNativeTests.swift │ │ ├── build.sh │ │ └── pre-build.sh │ └── web-server-native │ │ ├── .idea │ │ ├── .gitignore │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── web-server-native.iml │ │ ├── Cargo.lock │ │ ├── Cargo.toml │ │ └── crates │ │ ├── playground │ │ ├── Cargo.toml │ │ └── src │ │ │ └── main.rs │ │ ├── server-android │ │ ├── Cargo.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── static_server.rs │ │ │ └── websocket_server.rs │ │ ├── server-ios │ │ ├── Cargo.toml │ │ ├── cbindgen.toml │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── static_server.rs │ │ │ └── websocket_server.rs │ │ └── server │ │ ├── .idea │ │ ├── .gitignore │ │ ├── modules.xml │ │ ├── vcs.xml │ │ └── web-server-native.iml │ │ ├── Cargo.toml │ │ ├── files │ │ └── index.html │ │ └── src │ │ ├── lib.rs │ │ ├── static_server.rs │ │ └── websocket_server.rs │ ├── tsconfig.json │ └── typings │ ├── android.d.ts │ └── objc!WebServerNative.d.ts ├── references.d.ts ├── tools ├── assets │ ├── App_Resources │ │ ├── Android │ │ │ ├── app.gradle │ │ │ ├── before-plugins.gradle │ │ │ └── src │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── embrace-config.json │ │ │ │ └── res │ │ │ │ ├── drawable-hdpi │ │ │ │ ├── background.png │ │ │ │ ├── customimage.jpg │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-ldpi │ │ │ │ ├── background.png │ │ │ │ ├── customimage.jpg │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-mdpi │ │ │ │ ├── background.png │ │ │ │ ├── customimage.jpg │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-nodpi │ │ │ │ └── splash_screen.xml │ │ │ │ ├── drawable-xhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── drawable-xxxhdpi │ │ │ │ ├── background.png │ │ │ │ ├── icon.png │ │ │ │ └── logo.png │ │ │ │ ├── values-v21 │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ ├── values │ │ │ │ ├── colors.xml │ │ │ │ └── styles.xml │ │ │ │ └── xml │ │ │ │ └── security_config.xml │ │ └── iOS │ │ │ ├── Assets.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── Contents.json │ │ │ │ ├── icon-1024.png │ │ │ │ ├── icon-20.png │ │ │ │ ├── icon-20@2x.png │ │ │ │ ├── icon-20@3x.png │ │ │ │ ├── icon-29.png │ │ │ │ ├── icon-29@2x.png │ │ │ │ ├── icon-29@3x.png │ │ │ │ ├── icon-40.png │ │ │ │ ├── icon-40@2x.png │ │ │ │ ├── icon-40@3x.png │ │ │ │ ├── icon-60@2x.png │ │ │ │ ├── icon-60@3x.png │ │ │ │ ├── icon-76.png │ │ │ │ ├── icon-76@2x.png │ │ │ │ └── icon-83.5@2x.png │ │ │ ├── Contents.json │ │ │ ├── LaunchScreen.AspectFill.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-AspectFill.png │ │ │ │ ├── LaunchScreen-AspectFill@2x.png │ │ │ │ └── LaunchScreen-AspectFill@3x.png │ │ │ └── LaunchScreen.Center.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── LaunchScreen-Center.png │ │ │ │ ├── LaunchScreen-Center@2x.png │ │ │ │ └── LaunchScreen-Center@3x.png │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── Podfile │ │ │ ├── bell.mp3 │ │ │ ├── build.xcconfig │ │ │ ├── icon.png │ │ │ ├── icon@2x.png │ │ │ ├── nativescript.png │ │ │ └── switch.png │ ├── README.md │ ├── images │ │ ├── camplus1.gif │ │ └── liveshopper.png │ ├── publishing │ │ └── .npmignore │ └── videos │ │ ├── big_buck_bunny.mp4 │ │ ├── sample-ru.srt │ │ ├── sample.srt │ │ ├── small.mp4 │ │ └── video-ctr.enc ├── demo │ ├── index.ts │ ├── nativescript-airship-adm │ │ └── index.ts │ ├── nativescript-airship-fcm │ │ └── index.ts │ ├── nativescript-airship-hms │ │ └── index.ts │ ├── nativescript-airship │ │ └── index.ts │ ├── nativescript-appcues │ │ └── index.ts │ ├── nativescript-aptabase │ │ └── index.ts │ ├── nativescript-auth0 │ │ └── index.ts │ ├── nativescript-barcodescanner │ │ └── index.ts │ ├── nativescript-blur │ │ └── index.ts │ ├── nativescript-camera-plus │ │ └── index.ts │ ├── nativescript-cardview │ │ └── index.ts │ ├── nativescript-carousel │ │ └── index.ts │ ├── nativescript-checkbox │ │ └── index.ts │ ├── nativescript-dynatrace │ │ └── index.ts │ ├── nativescript-embrace │ │ └── index.ts │ ├── nativescript-exoplayer │ │ └── index.ts │ ├── nativescript-fancyalert │ │ └── index.ts │ ├── nativescript-filterable-listpicker │ │ └── index.ts │ ├── nativescript-freshchat │ │ └── index.ts │ ├── nativescript-input-mask │ │ └── index.ts │ ├── nativescript-intercom │ │ └── index.ts │ ├── nativescript-loading-indicator │ │ └── index.ts │ ├── nativescript-onfido │ │ └── index.ts │ ├── nativescript-persona │ │ └── index.ts │ ├── nativescript-plaid │ │ └── index.ts │ ├── nativescript-qr │ │ └── index.ts │ ├── nativescript-tracking-transparency │ │ └── index.ts │ ├── nativescript-walletconnect │ │ └── index.ts │ ├── nativescript-web-server │ │ └── index.ts │ ├── references.d.ts │ ├── tsconfig.json │ └── utils │ │ ├── demo-base.ts │ │ ├── index.ts │ │ └── observable-property.ts ├── package-settings.json ├── schematics │ └── .gitkeep ├── scripts │ ├── build-finish.ts │ ├── qr-build-ios-framework.sh │ ├── qr-build-ios-native.sh │ ├── qr-build.sh │ ├── qr-ios-build.sh │ └── webserver-build-ios.sh ├── tsconfig.tools.json └── workspace-scripts.js ├── tsconfig.base.json └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/.gitignore: -------------------------------------------------------------------------------- 1 | _ 2 | -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | npx lint-staged --allow-empty 5 | -------------------------------------------------------------------------------- /.npsrc: -------------------------------------------------------------------------------- 1 | { 2 | "config": "./tools/workspace-scripts.js" 3 | } -------------------------------------------------------------------------------- /.nxignore: -------------------------------------------------------------------------------- 1 | apps/**/*_off -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/.prettierrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/README.md -------------------------------------------------------------------------------- /apps/demo-angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/.eslintrc.json -------------------------------------------------------------------------------- /apps/demo-angular/.gitignore: -------------------------------------------------------------------------------- 1 | hooks 2 | platforms 3 | !webpack.config.js -------------------------------------------------------------------------------- /apps/demo-angular/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/nativescript.config.ts -------------------------------------------------------------------------------- /apps/demo-angular/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/package.json -------------------------------------------------------------------------------- /apps/demo-angular/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/project.json -------------------------------------------------------------------------------- /apps/demo-angular/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/references.d.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/app-routing.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/app.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/app.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/app.scss -------------------------------------------------------------------------------- /apps/demo-angular/src/home.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/home.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/home.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/home.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/main.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-adm.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-adm.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-adm.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-adm.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-adm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-adm.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-fcm.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-fcm.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-fcm.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-fcm.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-fcm.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-fcm.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-hms.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-hms.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-hms.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-hms.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship-hms.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship-hms.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-airship.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-airship.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-appcues.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-appcues.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-appcues.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-appcues.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-appcues.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-appcues.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-aptabase.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-aptabase.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-aptabase.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-aptabase.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-aptabase.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-aptabase.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-auth0.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-auth0.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-auth0.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-auth0.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-auth0.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-auth0.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-barcodescanner.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-barcodescanner.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-blur.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-blur.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-blur.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-blur.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-blur.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-blur.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-camera-plus.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-camera-plus.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-camera-plus.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-camera-plus.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-camera-plus.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-camera-plus.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-cardview.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-cardview.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-cardview.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-cardview.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-cardview.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-cardview.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-carousel.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-carousel.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-carousel.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-carousel.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-carousel.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-checkbox.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-checkbox.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-checkbox.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-checkbox.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-checkbox.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-checkbox.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-dynatrace.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-dynatrace.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-dynatrace.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-dynatrace.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-dynatrace.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-dynatrace.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-embrace.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-embrace.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-embrace.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-embrace.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-embrace.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-embrace.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-exoplayer.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-exoplayer.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-exoplayer.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-exoplayer.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-exoplayer.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-exoplayer.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fancyalert.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fancyalert.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fancyalert.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fancyalert.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-fancyalert.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-fancyalert.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-freshchat.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-freshchat.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-freshchat.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-freshchat.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-freshchat.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-freshchat.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-input-mask.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-input-mask.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-input-mask.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-input-mask.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-input-mask.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-input-mask.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-intercom.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-intercom.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-intercom.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-intercom.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-intercom.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-intercom.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-onfido.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-onfido.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-onfido.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-onfido.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-onfido.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-onfido.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-persona.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-persona.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-persona.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-persona.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-persona.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-persona.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-plaid.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-plaid.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-plaid.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-plaid.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-plaid.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-plaid.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-qr.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-qr.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-qr.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-qr.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-qr.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-qr.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-walletconnect.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-walletconnect.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-walletconnect.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-walletconnect.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-web-server.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-web-server.component.html -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-web-server.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-web-server.component.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/plugin-demos/nativescript-web-server.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/plugin-demos/nativescript-web-server.module.ts -------------------------------------------------------------------------------- /apps/demo-angular/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/src/polyfills.ts -------------------------------------------------------------------------------- /apps/demo-angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/tsconfig.json -------------------------------------------------------------------------------- /apps/demo-angular/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo-angular/webpack.config.js -------------------------------------------------------------------------------- /apps/demo/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/.eslintrc.json -------------------------------------------------------------------------------- /apps/demo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/.gitignore -------------------------------------------------------------------------------- /apps/demo/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/nativescript.config.ts -------------------------------------------------------------------------------- /apps/demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/package.json -------------------------------------------------------------------------------- /apps/demo/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/project.json -------------------------------------------------------------------------------- /apps/demo/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/references.d.ts -------------------------------------------------------------------------------- /apps/demo/src/app-root.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/app-root.xml -------------------------------------------------------------------------------- /apps/demo/src/app.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/app.scss -------------------------------------------------------------------------------- /apps/demo/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/app.ts -------------------------------------------------------------------------------- /apps/demo/src/i18n/en.default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/i18n/en.default.json -------------------------------------------------------------------------------- /apps/demo/src/main-page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/main-page.ts -------------------------------------------------------------------------------- /apps/demo/src/main-page.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/main-page.xml -------------------------------------------------------------------------------- /apps/demo/src/main-view-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/main-view-model.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship-adm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship-adm.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship-adm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship-adm.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship-fcm.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship-fcm.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship-fcm.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship-fcm.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship-hms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship-hms.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship-hms.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship-hms.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-airship.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-airship.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-appcues.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-appcues.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-appcues.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-appcues.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-aptabase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-aptabase.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-aptabase.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-aptabase.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-auth0.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-auth0.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-auth0.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-auth0.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-barcodescanner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-barcodescanner.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-barcodescanner.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-barcodescanner.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-blur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-blur.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-blur.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-blur.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-camera-plus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-camera-plus.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-camera-plus.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-camera-plus.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-cardview.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-cardview.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-cardview.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-cardview.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-carousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-carousel.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-carousel.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-carousel.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-checkbox.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-checkbox.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-checkbox.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-checkbox.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-dynatrace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-dynatrace.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-dynatrace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-dynatrace.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-embrace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-embrace.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-embrace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-embrace.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-exoplayer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-exoplayer.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-exoplayer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-exoplayer.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-fancyalert.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-fancyalert.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-fancyalert.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-fancyalert.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-filterable-listpicker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-filterable-listpicker.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-filterable-listpicker.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-filterable-listpicker.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-freshchat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-freshchat.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-freshchat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-freshchat.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-input-mask.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-input-mask.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-input-mask.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-input-mask.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-intercom.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-intercom.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-intercom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-intercom.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-loading-indicator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-loading-indicator.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-loading-indicator.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-loading-indicator.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-onfido.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-onfido.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-onfido.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-onfido.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-persona.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-persona.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-persona.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-persona.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-plaid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-plaid.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-plaid.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-plaid.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-qr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-qr.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-qr.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-qr.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-tracking-transparency.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-tracking-transparency.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-tracking-transparency.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-tracking-transparency.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-walletconnect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-walletconnect.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-walletconnect.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-walletconnect.xml -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-web-server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-web-server.ts -------------------------------------------------------------------------------- /apps/demo/src/plugin-demos/nativescript-web-server.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/plugin-demos/nativescript-web-server.xml -------------------------------------------------------------------------------- /apps/demo/src/web_assets/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/src/web_assets/index.html -------------------------------------------------------------------------------- /apps/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/tsconfig.json -------------------------------------------------------------------------------- /apps/demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/apps/demo/webpack.config.js -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/jest.config.ts -------------------------------------------------------------------------------- /nx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/nx.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/package.json -------------------------------------------------------------------------------- /packages/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/README.md -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/index.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/package.json -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/project.json -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship-adm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-adm/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/README.md -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/index.ts -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/package.json -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'Airship', '~> 16.1.0' -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/project.json -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-airship-fcm/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-fcm/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/README.md -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/index.ts -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/package.json -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/project.json -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-airship-hms/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship-hms/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-airship/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/README.md -------------------------------------------------------------------------------- /packages/nativescript-airship/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/common.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/package.json -------------------------------------------------------------------------------- /packages/nativescript-airship/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/project.json -------------------------------------------------------------------------------- /packages/nativescript-airship/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-airship/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-airship/typings/objc!AirshipKit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-airship/typings/objc!AirshipKit.d.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-appcues/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/README.md -------------------------------------------------------------------------------- /packages/nativescript-appcues/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/common.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/package.json -------------------------------------------------------------------------------- /packages/nativescript-appcues/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-appcues/platforms/android/nativescript_appcues.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/platforms/android/nativescript_appcues.aar -------------------------------------------------------------------------------- /packages/nativescript-appcues/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'Appcues' -------------------------------------------------------------------------------- /packages/nativescript-appcues/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/project.json -------------------------------------------------------------------------------- /packages/nativescript-appcues/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-appcues/typings/appcues-android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/typings/appcues-android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/typings/koin-android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/typings/koin-android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/typings/koin-core.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/typings/koin-core.d.ts -------------------------------------------------------------------------------- /packages/nativescript-appcues/typings/objc!AppcuesKit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-appcues/typings/objc!AppcuesKit.d.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-aptabase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/README.md -------------------------------------------------------------------------------- /packages/nativescript-aptabase/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/common.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/package.json -------------------------------------------------------------------------------- /packages/nativescript-aptabase/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-aptabase/platforms/ios/src/NSCAptabase.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/platforms/ios/src/NSCAptabase.swift -------------------------------------------------------------------------------- /packages/nativescript-aptabase/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/project.json -------------------------------------------------------------------------------- /packages/nativescript-aptabase/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-aptabase/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-aptabase/typings/objc!NSCAptabase.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-aptabase/typings/objc!NSCAptabase.d.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-auth0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/README.md -------------------------------------------------------------------------------- /packages/nativescript-auth0/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/common.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/nativescript.config.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/package.json -------------------------------------------------------------------------------- /packages/nativescript-auth0/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-auth0/platforms/android/nativescript_auth0.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/platforms/android/nativescript_auth0.aar -------------------------------------------------------------------------------- /packages/nativescript-auth0/platforms/ios/src/NSCAuth0.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/platforms/ios/src/NSCAuth0.swift -------------------------------------------------------------------------------- /packages/nativescript-auth0/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/project.json -------------------------------------------------------------------------------- /packages/nativescript-auth0/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-auth0/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/typings/auth0.android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/typings/auth0.android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-auth0/typings/ios.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-auth0/typings/ios.d.ts -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/README.md -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/common.ts -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './common'; 2 | -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/build.ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/build.ios.sh -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/build.sh -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCameraSwitchButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCameraSwitchButton.h -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCameraSwitchButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCameraSwitchButton.m -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCodeReader.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCodeReader.h -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCodeReader.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCodeReader.m -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCodeReaderDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCodeReaderDelegate.h -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCodeReaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCodeReaderView.h -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRCodeReaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRCodeReaderView.m -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRToggleTorchButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRToggleTorchButton.h -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/QRToggleTorchButton.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/QRToggleTorchButton.m -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/native-src/ios/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/native-src/ios/build.sh -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/package.json -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/project.json -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-barcodescanner/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-barcodescanner/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-blur/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-blur/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/README.md -------------------------------------------------------------------------------- /packages/nativescript-blur/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-blur/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-blur/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-blur/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/package.json -------------------------------------------------------------------------------- /packages/nativescript-blur/platforms/android/blurkit-1.1.1.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/platforms/android/blurkit-1.1.1.aar -------------------------------------------------------------------------------- /packages/nativescript-blur/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/project.json -------------------------------------------------------------------------------- /packages/nativescript-blur/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-blur/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-blur/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-blur/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/README.md -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/angular/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/angular/index.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/angular/ng-package.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nstudio-nativescript-camera-plus-angular" 3 | } 4 | -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/angular/tsconfig.angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/angular/tsconfig.angular.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/angular/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/common.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/events.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/helpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/helpers.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/package.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/platforms/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/platforms/ios/Info.plist -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/project.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/selected-asset.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/selected-asset.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-camera-plus/typings/objc!SwiftyCam.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-camera-plus/typings/objc!SwiftyCam.d.ts -------------------------------------------------------------------------------- /packages/nativescript-cardview/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-cardview/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/README.md -------------------------------------------------------------------------------- /packages/nativescript-cardview/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/common.ts -------------------------------------------------------------------------------- /packages/nativescript-cardview/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-cardview/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-cardview/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-cardview/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/package.json -------------------------------------------------------------------------------- /packages/nativescript-cardview/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-cardview/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/project.json -------------------------------------------------------------------------------- /packages/nativescript-cardview/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-cardview/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-cardview/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-carousel/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-carousel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/README.md -------------------------------------------------------------------------------- /packages/nativescript-carousel/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/common.ts -------------------------------------------------------------------------------- /packages/nativescript-carousel/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-carousel/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-carousel/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-carousel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/package.json -------------------------------------------------------------------------------- /packages/nativescript-carousel/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-carousel/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/nativescript-carousel/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/project.json -------------------------------------------------------------------------------- /packages/nativescript-carousel/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-carousel/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-carousel/typings/objc!DKCarouselView.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-carousel/typings/objc!DKCarouselView.d.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/README.md -------------------------------------------------------------------------------- /packages/nativescript-checkbox/angular/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/angular/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/angular/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/angular/index.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/angular/ng-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/angular/ng-package.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/angular/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "nstudio-nativescript-checkbox-angular" 3 | } 4 | -------------------------------------------------------------------------------- /packages/nativescript-checkbox/angular/tsconfig.angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/angular/tsconfig.angular.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/angular/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/angular/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/common.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/package.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'BEMCheckBox', '~> 1.4.1' 2 | -------------------------------------------------------------------------------- /packages/nativescript-checkbox/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/project.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-checkbox/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-checkbox/typings/BEMCheckBox.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-checkbox/typings/BEMCheckBox.d.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/README.md -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/common.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/hooks/before-checkForChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/hooks/before-checkForChanges.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/hooks/before-watchPatterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/hooks/before-watchPatterns.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/hooks/index.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/hooks/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/package.json -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | use_frameworks! 2 | pod 'Dynatrace', '~> 8.215' 3 | -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/postinstall.js: -------------------------------------------------------------------------------- 1 | require('@nativescript/hook')(__dirname).postinstall(); 2 | -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/preuninstall.js: -------------------------------------------------------------------------------- 1 | require('@nativescript/hook')(__dirname).preuninstall(); 2 | -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/project.json -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/typings/nativescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/typings/nativescript.d.ts -------------------------------------------------------------------------------- /packages/nativescript-dynatrace/typings/objc!Dynatrace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-dynatrace/typings/objc!Dynatrace.d.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-embrace/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/README.md -------------------------------------------------------------------------------- /packages/nativescript-embrace/common.ts: -------------------------------------------------------------------------------- 1 | export class EmbraceBase {} -------------------------------------------------------------------------------- /packages/nativescript-embrace/hooks/before-checkForChanges.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/hooks/before-checkForChanges.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/hooks/before-watchPatterns.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/hooks/before-watchPatterns.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/hooks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/hooks/index.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/hooks/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/hooks/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-embrace/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/package.json -------------------------------------------------------------------------------- /packages/nativescript-embrace/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-embrace/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'EmbraceIO', '~> 5.6' -------------------------------------------------------------------------------- /packages/nativescript-embrace/postinstall.js: -------------------------------------------------------------------------------- 1 | require('@nativescript/hook')(__dirname).postinstall(); 2 | -------------------------------------------------------------------------------- /packages/nativescript-embrace/preuninstall.js: -------------------------------------------------------------------------------- 1 | require('@nativescript/hook')(__dirname).preuninstall(); 2 | -------------------------------------------------------------------------------- /packages/nativescript-embrace/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/project.json -------------------------------------------------------------------------------- /packages/nativescript-embrace/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-embrace/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/typings/nativescript.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/typings/nativescript.d.ts -------------------------------------------------------------------------------- /packages/nativescript-embrace/typings/objc!Embrace.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-embrace/typings/objc!Embrace.d.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/README.md -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/common.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/package.json -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'ASBPlayerSubtitling' 2 | -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/project.json -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/subtitle-source/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/subtitle-source/common.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/subtitle-source/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/subtitle-source/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/subtitle-source/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/subtitle-source/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/subtitle-source/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/subtitle-source/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/typings/exoplayer.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/typings/exoplayer.d.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/video-source/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/video-source/common.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/video-source/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/video-source/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/video-source/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/video-source/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-exoplayer/video-source/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-exoplayer/video-source/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/README.md -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/common.ts -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/package.json -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'SCLAlertView-Objective-C' -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/project.json -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-fancyalert/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-fancyalert/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/README.md -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/common.ts -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/package.json -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/project.json -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-filterable-listpicker/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-filterable-listpicker/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-freshchat/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-freshchat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/README.md -------------------------------------------------------------------------------- /packages/nativescript-freshchat/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/common.ts -------------------------------------------------------------------------------- /packages/nativescript-freshchat/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-freshchat/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-freshchat/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-freshchat/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/package.json -------------------------------------------------------------------------------- /packages/nativescript-freshchat/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-freshchat/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'FreshchatSDK' -------------------------------------------------------------------------------- /packages/nativescript-freshchat/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/project.json -------------------------------------------------------------------------------- /packages/nativescript-freshchat/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-freshchat/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-freshchat/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-freshchat/typings/objc!FreshchatSDK.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-freshchat/typings/objc!FreshchatSDK.d.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-input-mask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/README.md -------------------------------------------------------------------------------- /packages/nativescript-input-mask/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/common.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/package.json -------------------------------------------------------------------------------- /packages/nativescript-input-mask/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-input-mask/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'InputMask', '~> 6.1.0' -------------------------------------------------------------------------------- /packages/nativescript-input-mask/platforms/ios/src/InputMaskUtils.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/platforms/ios/src/InputMaskUtils.swift -------------------------------------------------------------------------------- /packages/nativescript-input-mask/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/project.json -------------------------------------------------------------------------------- /packages/nativescript-input-mask/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-input-mask/typings/android-declarations.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/typings/android-declarations.d.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-input-mask/typings/objc!InputMask.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-input-mask/typings/objc!InputMask.d.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-intercom/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nativescript-intercom/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/README.md -------------------------------------------------------------------------------- /packages/nativescript-intercom/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/common.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/nativescript.config.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/package.json -------------------------------------------------------------------------------- /packages/nativescript-intercom/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-intercom/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/project.json -------------------------------------------------------------------------------- /packages/nativescript-intercom/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-intercom/typings/android-sdk-base.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/typings/android-sdk-base.d.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/typings/objc!Intercom.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/typings/objc!Intercom.d.ts -------------------------------------------------------------------------------- /packages/nativescript-intercom/typings/objc!Intercom_Private.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-intercom/typings/objc!Intercom_Private.d.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/README.md -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/common.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/nativescript.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/nativescript.config.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/package.json -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/project.json -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-loading-indicator/typings/objc!MBProgressHUD.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-loading-indicator/typings/objc!MBProgressHUD.d.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-onfido/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/README.md -------------------------------------------------------------------------------- /packages/nativescript-onfido/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/common.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/package.json -------------------------------------------------------------------------------- /packages/nativescript-onfido/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-onfido/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'Onfido', '~> 26.1.1' -------------------------------------------------------------------------------- /packages/nativescript-onfido/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/project.json -------------------------------------------------------------------------------- /packages/nativescript-onfido/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-onfido/typings/android-onfido-capture-sdk.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/typings/android-onfido-capture-sdk.d.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/typings/objc!Onfido.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/typings/objc!Onfido.d.ts -------------------------------------------------------------------------------- /packages/nativescript-onfido/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-onfido/utils.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-persona/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/README.md -------------------------------------------------------------------------------- /packages/nativescript-persona/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/common.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/package.json -------------------------------------------------------------------------------- /packages/nativescript-persona/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-persona/platforms/android/nativescript_persona.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/platforms/android/nativescript_persona.aar -------------------------------------------------------------------------------- /packages/nativescript-persona/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/nativescript-persona/platforms/ios/src/NSCPersona.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/platforms/ios/src/NSCPersona.swift -------------------------------------------------------------------------------- /packages/nativescript-persona/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/project.json -------------------------------------------------------------------------------- /packages/nativescript-persona/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-persona/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-persona/typings/objc!nsswiftsupport.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-persona/typings/objc!nsswiftsupport.d.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-plaid/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/README.md -------------------------------------------------------------------------------- /packages/nativescript-plaid/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/common.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/demo.gif -------------------------------------------------------------------------------- /packages/nativescript-plaid/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/package.json -------------------------------------------------------------------------------- /packages/nativescript-plaid/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-plaid/platforms/ios/Podfile: -------------------------------------------------------------------------------- 1 | pod 'Plaid', '~> 2.2' 2 | -------------------------------------------------------------------------------- /packages/nativescript-plaid/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/project.json -------------------------------------------------------------------------------- /packages/nativescript-plaid/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-plaid/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-plaid/typings/objc!LinkKit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-plaid/typings/objc!LinkKit.d.ts -------------------------------------------------------------------------------- /packages/nativescript-qr/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-qr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/README.md -------------------------------------------------------------------------------- /packages/nativescript-qr/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/common.ts -------------------------------------------------------------------------------- /packages/nativescript-qr/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-qr/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-qr/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-qr/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/package.json -------------------------------------------------------------------------------- /packages/nativescript-qr/platforms/android/qr-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/platforms/android/qr-release.aar -------------------------------------------------------------------------------- /packages/nativescript-qr/platforms/ios/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/platforms/ios/Info.plist -------------------------------------------------------------------------------- /packages/nativescript-qr/platforms/ios/QrNative.xcframework/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/platforms/ios/QrNative.xcframework/Info.plist -------------------------------------------------------------------------------- /packages/nativescript-qr/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/project.json -------------------------------------------------------------------------------- /packages/nativescript-qr/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/.gitignore -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.idea/.name: -------------------------------------------------------------------------------- 1 | QrDemo -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/.idea/compiler.xml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.idea/gradle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/.idea/gradle.xml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/.idea/misc.xml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/.idea/vcs.xml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/app/build.gradle -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/app/proguard-rules.pro -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/build.gradle -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/gradle.properties -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/gradlew -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/gradlew.bat -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/qr/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/qr/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/qr/build.gradle -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/qr/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/qr/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/qr/proguard-rules.pro -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-android/settings.gradle -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-ios/.gitignore: -------------------------------------------------------------------------------- 1 | /dist 2 | QrNative/libs/** -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-ios/QrNative/Qr.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-ios/QrNative/Qr.swift -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-ios/QrNative/QrNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-ios/QrNative/QrNative.h -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-ios/QrNative/QrNative/QrNative.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-ios/QrNative/QrNative/QrNative.h -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-ios/QrNative/include/qr_native.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-ios/QrNative/include/qr_native.h -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-ios/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-ios/build.sh -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/.gitignore: -------------------------------------------------------------------------------- 1 | /target 2 | /**/*.rs.bk 3 | /Cargo.lock 4 | .DS_Store -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/.idea/.gitignore -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/.idea/modules.xml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/.idea/qr-native.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/.idea/qr-native.iml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/.idea/vcs.xml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/Cargo.toml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/build.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/build.rs -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/cbindgen.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/cbindgen.toml -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/src/android.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/src/android.rs -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/src/bitmap.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/src/bitmap.rs -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/src/common.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/src/common.rs -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/src/ios.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/src/ios.rs -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/src/lib.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/src-native/qr-native/src/lib.rs -------------------------------------------------------------------------------- /packages/nativescript-qr/src-native/qr-native/wrapper.h: -------------------------------------------------------------------------------- 1 | #include -------------------------------------------------------------------------------- /packages/nativescript-qr/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-qr/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/README.md -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/common.ts -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/package.json -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/project.json -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-tracking-transparency/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-tracking-transparency/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/README.md -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/common.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/package.json -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/platforms/android/include.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/platforms/android/include.gradle -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/platforms/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/platforms/ios/Podfile -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/project.json -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/typings/android-trust-wallet.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/typings/android-trust-wallet.d.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/typings/objc!WalletCore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/typings/objc!WalletCore.d.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/typings/objc!nsswiftsupport.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/typings/objc!nsswiftsupport.d.ts -------------------------------------------------------------------------------- /packages/nativescript-walletconnect/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-walletconnect/utils.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/.eslintrc.json -------------------------------------------------------------------------------- /packages/nativescript-web-server/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/CHANGELOG.md -------------------------------------------------------------------------------- /packages/nativescript-web-server/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/README.md -------------------------------------------------------------------------------- /packages/nativescript-web-server/common.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/common.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/index.android.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/index.android.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/index.d.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/index.ios.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/index.ios.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/package.json -------------------------------------------------------------------------------- /packages/nativescript-web-server/platforms/android/webserver-release.aar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/platforms/android/webserver-release.aar -------------------------------------------------------------------------------- /packages/nativescript-web-server/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/project.json -------------------------------------------------------------------------------- /packages/nativescript-web-server/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/references.d.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-android/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-android/.idea/.name: -------------------------------------------------------------------------------- 1 | WebServerDemo -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-android/app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/src-native/web-server-android/gradlew -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-android/webserver/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-android/webserver/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-ios/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/src-native/web-server-ios/build.sh -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-ios/pre-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/src-native/web-server-ios/pre-build.sh -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-native/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/src-native/web-server-native/Cargo.lock -------------------------------------------------------------------------------- /packages/nativescript-web-server/src-native/web-server-native/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/src-native/web-server-native/Cargo.toml -------------------------------------------------------------------------------- /packages/nativescript-web-server/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/tsconfig.json -------------------------------------------------------------------------------- /packages/nativescript-web-server/typings/android.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/typings/android.d.ts -------------------------------------------------------------------------------- /packages/nativescript-web-server/typings/objc!WebServerNative.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/packages/nativescript-web-server/typings/objc!WebServerNative.d.ts -------------------------------------------------------------------------------- /references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/references.d.ts -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/app.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/app.gradle -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/before-plugins.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/before-plugins.gradle -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/embrace-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/embrace-config.json -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-hdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-ldpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-mdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xhdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/drawable-xxhdpi/logo.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values-v21/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/values-v21/colors.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values-v21/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/values-v21/styles.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/Android/src/main/res/xml/security_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/Android/src/main/res/xml/security_config.xml -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/Info.plist -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/LaunchScreen.storyboard -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/Podfile -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/bell.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/bell.mp3 -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/build.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/build.xcconfig -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/icon.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/icon@2x.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/nativescript.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/nativescript.png -------------------------------------------------------------------------------- /tools/assets/App_Resources/iOS/switch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/App_Resources/iOS/switch.png -------------------------------------------------------------------------------- /tools/assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/README.md -------------------------------------------------------------------------------- /tools/assets/images/camplus1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/images/camplus1.gif -------------------------------------------------------------------------------- /tools/assets/images/liveshopper.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/images/liveshopper.png -------------------------------------------------------------------------------- /tools/assets/publishing/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/publishing/.npmignore -------------------------------------------------------------------------------- /tools/assets/videos/big_buck_bunny.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/videos/big_buck_bunny.mp4 -------------------------------------------------------------------------------- /tools/assets/videos/sample-ru.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/videos/sample-ru.srt -------------------------------------------------------------------------------- /tools/assets/videos/sample.srt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/videos/sample.srt -------------------------------------------------------------------------------- /tools/assets/videos/small.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/videos/small.mp4 -------------------------------------------------------------------------------- /tools/assets/videos/video-ctr.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/assets/videos/video-ctr.enc -------------------------------------------------------------------------------- /tools/demo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-airship-adm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-airship-adm/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-airship-fcm/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-airship-fcm/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-airship-hms/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-airship-hms/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-airship/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-airship/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-appcues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-appcues/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-aptabase/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-aptabase/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-auth0/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-auth0/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-barcodescanner/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-barcodescanner/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-blur/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-blur/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-camera-plus/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-camera-plus/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-cardview/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-cardview/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-carousel/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-carousel/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-checkbox/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-checkbox/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-dynatrace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-dynatrace/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-embrace/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-embrace/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-exoplayer/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-exoplayer/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-fancyalert/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-fancyalert/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-filterable-listpicker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-filterable-listpicker/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-freshchat/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-freshchat/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-input-mask/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-input-mask/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-intercom/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-intercom/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-loading-indicator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-loading-indicator/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-onfido/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-onfido/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-persona/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-persona/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-plaid/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-plaid/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-qr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-qr/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-tracking-transparency/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-tracking-transparency/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-walletconnect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-walletconnect/index.ts -------------------------------------------------------------------------------- /tools/demo/nativescript-web-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/nativescript-web-server/index.ts -------------------------------------------------------------------------------- /tools/demo/references.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/references.d.ts -------------------------------------------------------------------------------- /tools/demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/tsconfig.json -------------------------------------------------------------------------------- /tools/demo/utils/demo-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/utils/demo-base.ts -------------------------------------------------------------------------------- /tools/demo/utils/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/utils/index.ts -------------------------------------------------------------------------------- /tools/demo/utils/observable-property.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/demo/utils/observable-property.ts -------------------------------------------------------------------------------- /tools/package-settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/package-settings.json -------------------------------------------------------------------------------- /tools/schematics/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tools/scripts/build-finish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/scripts/build-finish.ts -------------------------------------------------------------------------------- /tools/scripts/qr-build-ios-framework.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/scripts/qr-build-ios-framework.sh -------------------------------------------------------------------------------- /tools/scripts/qr-build-ios-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/scripts/qr-build-ios-native.sh -------------------------------------------------------------------------------- /tools/scripts/qr-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/scripts/qr-build.sh -------------------------------------------------------------------------------- /tools/scripts/qr-ios-build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/scripts/qr-ios-build.sh -------------------------------------------------------------------------------- /tools/scripts/webserver-build-ios.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/scripts/webserver-build-ios.sh -------------------------------------------------------------------------------- /tools/tsconfig.tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/tsconfig.tools.json -------------------------------------------------------------------------------- /tools/workspace-scripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tools/workspace-scripts.js -------------------------------------------------------------------------------- /tsconfig.base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nstudio/nativescript-plugins/HEAD/tsconfig.base.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "./tsconfig.base.json" 3 | } 4 | --------------------------------------------------------------------------------