├── .DS_Store ├── .vscode └── settings.json ├── README.md ├── capacitor-nfc ├── .DS_Store ├── .gitignore ├── .npmignore ├── CapacitorNfc.podspec ├── android │ ├── .gitignore │ ├── .idea │ │ └── vcs.xml │ ├── .npmignore │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── proguard-rules.pro │ ├── settings.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── android │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ │ └── com │ │ │ │ └── adrynov │ │ │ │ └── capacitor │ │ │ │ └── nfc │ │ │ │ ├── NFC.kt │ │ │ │ ├── NfcSettings.kt │ │ │ │ ├── NfcTag.java │ │ │ │ └── NfcUtils.java │ │ └── res │ │ │ ├── layout │ │ │ └── bridge_layout_main.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── ExampleUnitTest.java ├── dist │ └── esm │ │ ├── definitions.d.ts │ │ ├── definitions.js │ │ ├── definitions.js.map │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── index.js.map │ │ ├── models.d.ts │ │ ├── models.js │ │ ├── models.js.map │ │ ├── web.d.ts │ │ ├── web.js │ │ └── web.js.map ├── ios │ ├── Plugin.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── andrei.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ ├── Plugin.xcworkspace │ │ ├── contents.xcworkspacedata │ │ ├── xcshareddata │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcuserdata │ │ │ └── andrei.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ ├── Plugin │ │ ├── Info.plist │ │ ├── Plugin.h │ │ ├── Plugin.m │ │ └── Plugin.swift │ ├── PluginTests │ │ ├── Info.plist │ │ └── PluginTests.swift │ ├── Podfile │ ├── Podfile.lock │ └── Pods │ │ ├── Local Podspecs │ │ ├── Capacitor.podspec.json │ │ └── CapacitorCordova.podspec.json │ │ ├── Manifest.lock │ │ ├── Pods.xcodeproj │ │ ├── project.pbxproj │ │ └── xcuserdata │ │ │ └── andrei.xcuserdatad │ │ │ └── xcschemes │ │ │ ├── Capacitor.xcscheme │ │ │ ├── CapacitorCordova.xcscheme │ │ │ ├── Pods-Plugin.xcscheme │ │ │ ├── Pods-PluginTests.xcscheme │ │ │ └── xcschememanagement.plist │ │ └── Target Support Files │ │ ├── Capacitor │ │ ├── Capacitor-Info.plist │ │ ├── Capacitor-dummy.m │ │ ├── Capacitor-prefix.pch │ │ ├── Capacitor-umbrella.h │ │ ├── Capacitor.modulemap │ │ └── Capacitor.xcconfig │ │ ├── CapacitorCordova │ │ ├── CapacitorCordova-Info.plist │ │ ├── CapacitorCordova-dummy.m │ │ ├── CapacitorCordova-prefix.pch │ │ ├── CapacitorCordova-umbrella.h │ │ ├── CapacitorCordova.modulemap │ │ └── CapacitorCordova.xcconfig │ │ ├── Pods-Plugin │ │ ├── Pods-Plugin-Info.plist │ │ ├── Pods-Plugin-acknowledgements.markdown │ │ ├── Pods-Plugin-acknowledgements.plist │ │ ├── Pods-Plugin-dummy.m │ │ ├── Pods-Plugin-umbrella.h │ │ ├── Pods-Plugin.debug.xcconfig │ │ ├── Pods-Plugin.modulemap │ │ └── Pods-Plugin.release.xcconfig │ │ └── Pods-PluginTests │ │ ├── Pods-PluginTests-Info.plist │ │ ├── Pods-PluginTests-acknowledgements.markdown │ │ ├── Pods-PluginTests-acknowledgements.plist │ │ ├── Pods-PluginTests-dummy.m │ │ ├── Pods-PluginTests-frameworks.sh │ │ ├── Pods-PluginTests-umbrella.h │ │ ├── Pods-PluginTests.debug.xcconfig │ │ ├── Pods-PluginTests.modulemap │ │ └── Pods-PluginTests.release.xcconfig ├── package-lock.json ├── package.json ├── rollup.config.js ├── src │ ├── definitions.ts │ ├── index.ts │ ├── models.ts │ ├── utils.ts │ └── web.ts └── tsconfig.json └── example-app ├── .gitignore ├── android ├── .gitignore ├── .idea │ ├── codeStyles │ │ └── Project.xml │ ├── misc.xml │ └── runConfigurations.xml ├── app │ ├── .npmignore │ ├── build.gradle │ ├── capacitor.build.gradle │ ├── proguard-rules.pro │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── getcapacitor │ │ │ └── myapp │ │ │ └── ExampleInstrumentedTest.java │ │ ├── main │ │ ├── AndroidManifest.xml │ │ ├── assets │ │ │ └── capacitor.config.json │ │ ├── ic_launcher-web.png │ │ ├── java │ │ │ └── io │ │ │ │ └── ionic │ │ │ │ └── starter │ │ │ │ └── MainActivity.java │ │ └── res │ │ │ ├── drawable-land-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-land-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-hdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-mdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-port-xxxhdpi │ │ │ └── splash.png │ │ │ ├── drawable-v24 │ │ │ └── ic_launcher_foreground.xml │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ ├── launch_splash.xml │ │ │ └── splash.png │ │ │ ├── layout │ │ │ └── activity_main.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_launcher_foreground.png │ │ │ └── ic_launcher_round.png │ │ │ ├── values │ │ │ ├── ic_launcher_background.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ │ │ └── xml │ │ │ ├── config.xml │ │ │ └── file_paths.xml │ │ └── test │ │ └── java │ │ └── com │ │ └── getcapacitor │ │ └── myapp │ │ └── ExampleUnitTest.java ├── build.gradle ├── capacitor.settings.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle ├── angular.json ├── browserslist ├── capacitor.config.json ├── e2e ├── protractor.conf.js ├── src │ ├── app.e2e-spec.ts │ └── app.po.ts └── tsconfig.json ├── ionic.config.json ├── ios ├── .gitignore └── App │ ├── App.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata │ ├── App.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist │ ├── App │ ├── App.entitlements │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon-App-20x20@1x.png │ │ │ ├── Icon-App-20x20@2x.png │ │ │ ├── Icon-App-20x20@3x.png │ │ │ ├── Icon-App-29x29@1x.png │ │ │ ├── Icon-App-29x29@2x.png │ │ │ ├── Icon-App-29x29@3x.png │ │ │ ├── Icon-App-40x40@1x.png │ │ │ ├── Icon-App-40x40@2x.png │ │ │ ├── Icon-App-40x40@3x.png │ │ │ ├── Icon-App-60x60@2x.png │ │ │ ├── Icon-App-60x60@3x.png │ │ │ ├── Icon-App-76x76@1x.png │ │ │ ├── Icon-App-76x76@2x.png │ │ │ ├── Icon-App-83.5x83.5@2x.png │ │ │ └── ItunesArtwork@2x.png │ │ ├── Contents.json │ │ └── Splash.imageset │ │ │ ├── Contents.json │ │ │ ├── splash-2732x2732-1.png │ │ │ ├── splash-2732x2732-2.png │ │ │ └── splash-2732x2732.png │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── capacitor.config.json │ └── config.xml │ └── Podfile ├── karma.conf.js ├── package-lock.json ├── package.json ├── src ├── app │ ├── app-routing.module.ts │ ├── app.component.html │ ├── app.component.scss │ ├── app.component.spec.ts │ ├── app.component.ts │ ├── app.module.ts │ └── home │ │ ├── home.module.ts │ │ ├── home.page.html │ │ ├── home.page.scss │ │ ├── home.page.spec.ts │ │ └── home.page.ts ├── assets │ ├── icon │ │ └── favicon.png │ └── shapes.svg ├── environments │ ├── environment.prod.ts │ └── environment.ts ├── global.scss ├── index.html ├── main.ts ├── polyfills.ts ├── test.ts ├── theme │ └── variables.scss └── zone-flags.ts ├── tsconfig.app.json ├── tsconfig.json ├── tsconfig.spec.json └── tslint.json /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/.DS_Store -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/README.md -------------------------------------------------------------------------------- /capacitor-nfc/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/.DS_Store -------------------------------------------------------------------------------- /capacitor-nfc/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | build/ 3 | -------------------------------------------------------------------------------- /capacitor-nfc/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/.npmignore -------------------------------------------------------------------------------- /capacitor-nfc/CapacitorNfc.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/CapacitorNfc.podspec -------------------------------------------------------------------------------- /capacitor-nfc/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/.gitignore -------------------------------------------------------------------------------- /capacitor-nfc/android/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/.idea/vcs.xml -------------------------------------------------------------------------------- /capacitor-nfc/android/.npmignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /capacitor-nfc/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/build.gradle -------------------------------------------------------------------------------- /capacitor-nfc/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/gradle.properties -------------------------------------------------------------------------------- /capacitor-nfc/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /capacitor-nfc/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /capacitor-nfc/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/gradlew -------------------------------------------------------------------------------- /capacitor-nfc/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/gradlew.bat -------------------------------------------------------------------------------- /capacitor-nfc/android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/proguard-rules.pro -------------------------------------------------------------------------------- /capacitor-nfc/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/settings.gradle -------------------------------------------------------------------------------- /capacitor-nfc/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/androidTest/java/com/getcapacitor/android/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NFC.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NFC.kt -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NfcSettings.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NfcSettings.kt -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NfcTag.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NfcTag.java -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NfcUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/java/com/adrynov/capacitor/nfc/NfcUtils.java -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/res/layout/bridge_layout_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/res/layout/bridge_layout_main.xml -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /capacitor-nfc/android/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /capacitor-nfc/android/src/test/java/com/getcapacitor/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/android/src/test/java/com/getcapacitor/ExampleUnitTest.java -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/definitions.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/definitions.d.ts -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/definitions.js: -------------------------------------------------------------------------------- 1 | //# sourceMappingURL=definitions.js.map -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/definitions.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/definitions.js.map -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/index.d.ts -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from './web'; 2 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/index.js.map -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/models.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/models.d.ts -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/models.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/models.js -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/models.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/models.js.map -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/web.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/web.d.ts -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/web.js -------------------------------------------------------------------------------- /capacitor-nfc/dist/esm/web.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/dist/esm/web.js.map -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin.xcworkspace/xcuserdata/andrei.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin.xcworkspace/xcuserdata/andrei.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin/Info.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin/Plugin.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin/Plugin.h -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin/Plugin.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin/Plugin.m -------------------------------------------------------------------------------- /capacitor-nfc/ios/Plugin/Plugin.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Plugin/Plugin.swift -------------------------------------------------------------------------------- /capacitor-nfc/ios/PluginTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/PluginTests/Info.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/PluginTests/PluginTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/PluginTests/PluginTests.swift -------------------------------------------------------------------------------- /capacitor-nfc/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Podfile -------------------------------------------------------------------------------- /capacitor-nfc/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Podfile.lock -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Local Podspecs/Capacitor.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Local Podspecs/Capacitor.podspec.json -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Local Podspecs/CapacitorCordova.podspec.json -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Manifest.lock -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/Capacitor.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/Capacitor.xcscheme -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/CapacitorCordova.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/CapacitorCordova.xcscheme -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/Pods-Plugin.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/Pods-Plugin.xcscheme -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/Pods-PluginTests.xcscheme -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Pods.xcodeproj/xcuserdata/andrei.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-Info.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-dummy.m -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-prefix.pch -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor-umbrella.h -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor.modulemap -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Capacitor/Capacitor.xcconfig -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-Info.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-dummy.m -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-prefix.pch -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova-umbrella.h -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.modulemap -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/CapacitorCordova/CapacitorCordova.xcconfig -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-Info.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.markdown -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-acknowledgements.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-dummy.m -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin-umbrella.h -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.debug.xcconfig -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.modulemap -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-Plugin/Pods-Plugin.release.xcconfig -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-Info.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.markdown -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-acknowledgements.plist -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-dummy.m -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-frameworks.sh -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests-umbrella.h -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.debug.xcconfig -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.modulemap -------------------------------------------------------------------------------- /capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/ios/Pods/Target Support Files/Pods-PluginTests/Pods-PluginTests.release.xcconfig -------------------------------------------------------------------------------- /capacitor-nfc/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/package-lock.json -------------------------------------------------------------------------------- /capacitor-nfc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/package.json -------------------------------------------------------------------------------- /capacitor-nfc/rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/rollup.config.js -------------------------------------------------------------------------------- /capacitor-nfc/src/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/src/definitions.ts -------------------------------------------------------------------------------- /capacitor-nfc/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/src/index.ts -------------------------------------------------------------------------------- /capacitor-nfc/src/models.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/src/models.ts -------------------------------------------------------------------------------- /capacitor-nfc/src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/src/utils.ts -------------------------------------------------------------------------------- /capacitor-nfc/src/web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/src/web.ts -------------------------------------------------------------------------------- /capacitor-nfc/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/capacitor-nfc/tsconfig.json -------------------------------------------------------------------------------- /example-app/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/.gitignore -------------------------------------------------------------------------------- /example-app/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/.gitignore -------------------------------------------------------------------------------- /example-app/android/.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /example-app/android/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/.idea/misc.xml -------------------------------------------------------------------------------- /example-app/android/.idea/runConfigurations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/.idea/runConfigurations.xml -------------------------------------------------------------------------------- /example-app/android/app/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/.npmignore -------------------------------------------------------------------------------- /example-app/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/build.gradle -------------------------------------------------------------------------------- /example-app/android/app/capacitor.build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/capacitor.build.gradle -------------------------------------------------------------------------------- /example-app/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/androidTest/java/com/getcapacitor/myapp/ExampleInstrumentedTest.java -------------------------------------------------------------------------------- /example-app/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/assets/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/assets/capacitor.config.json -------------------------------------------------------------------------------- /example-app/android/app/src/main/ic_launcher-web.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/ic_launcher-web.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/java/io/ionic/starter/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/java/io/ionic/starter/MainActivity.java -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-land-hdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-land-mdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-land-xhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-land-xxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-land-xxxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-hdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-port-hdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-mdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-port-mdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-xhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-port-xhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-port-xxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-port-xxxhdpi/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable/launch_splash.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable/launch_splash.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/drawable/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/drawable/splash.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/layout/activity_main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/layout/activity_main.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/xml/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/xml/config.xml -------------------------------------------------------------------------------- /example-app/android/app/src/main/res/xml/file_paths.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/main/res/xml/file_paths.xml -------------------------------------------------------------------------------- /example-app/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/app/src/test/java/com/getcapacitor/myapp/ExampleUnitTest.java -------------------------------------------------------------------------------- /example-app/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/build.gradle -------------------------------------------------------------------------------- /example-app/android/capacitor.settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/capacitor.settings.gradle -------------------------------------------------------------------------------- /example-app/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/gradle.properties -------------------------------------------------------------------------------- /example-app/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example-app/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example-app/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/gradlew -------------------------------------------------------------------------------- /example-app/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/gradlew.bat -------------------------------------------------------------------------------- /example-app/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/android/settings.gradle -------------------------------------------------------------------------------- /example-app/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/angular.json -------------------------------------------------------------------------------- /example-app/browserslist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/browserslist -------------------------------------------------------------------------------- /example-app/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/capacitor.config.json -------------------------------------------------------------------------------- /example-app/e2e/protractor.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/e2e/protractor.conf.js -------------------------------------------------------------------------------- /example-app/e2e/src/app.e2e-spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/e2e/src/app.e2e-spec.ts -------------------------------------------------------------------------------- /example-app/e2e/src/app.po.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/e2e/src/app.po.ts -------------------------------------------------------------------------------- /example-app/e2e/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/e2e/tsconfig.json -------------------------------------------------------------------------------- /example-app/ionic.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ionic.config.json -------------------------------------------------------------------------------- /example-app/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/.gitignore -------------------------------------------------------------------------------- /example-app/ios/App/App.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example-app/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-app/ios/App/App.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example-app/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /example-app/ios/App/App/App.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/App.entitlements -------------------------------------------------------------------------------- /example-app/ios/App/App/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/AppDelegate.swift -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/AppIcon.appiconset/ItunesArtwork@2x.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/Contents.json -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-1.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732-2.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Assets.xcassets/Splash.imageset/splash-2732x2732.png -------------------------------------------------------------------------------- /example-app/ios/App/App/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /example-app/ios/App/App/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /example-app/ios/App/App/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/Info.plist -------------------------------------------------------------------------------- /example-app/ios/App/App/capacitor.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/capacitor.config.json -------------------------------------------------------------------------------- /example-app/ios/App/App/config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/App/config.xml -------------------------------------------------------------------------------- /example-app/ios/App/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/ios/App/Podfile -------------------------------------------------------------------------------- /example-app/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/karma.conf.js -------------------------------------------------------------------------------- /example-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/package-lock.json -------------------------------------------------------------------------------- /example-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/package.json -------------------------------------------------------------------------------- /example-app/src/app/app-routing.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/app-routing.module.ts -------------------------------------------------------------------------------- /example-app/src/app/app.component.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/app.component.html -------------------------------------------------------------------------------- /example-app/src/app/app.component.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example-app/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /example-app/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/app.component.ts -------------------------------------------------------------------------------- /example-app/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/app.module.ts -------------------------------------------------------------------------------- /example-app/src/app/home/home.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/home/home.module.ts -------------------------------------------------------------------------------- /example-app/src/app/home/home.page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/home/home.page.html -------------------------------------------------------------------------------- /example-app/src/app/home/home.page.scss: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /example-app/src/app/home/home.page.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/home/home.page.spec.ts -------------------------------------------------------------------------------- /example-app/src/app/home/home.page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/app/home/home.page.ts -------------------------------------------------------------------------------- /example-app/src/assets/icon/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/assets/icon/favicon.png -------------------------------------------------------------------------------- /example-app/src/assets/shapes.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/assets/shapes.svg -------------------------------------------------------------------------------- /example-app/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true 3 | }; 4 | -------------------------------------------------------------------------------- /example-app/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/environments/environment.ts -------------------------------------------------------------------------------- /example-app/src/global.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/global.scss -------------------------------------------------------------------------------- /example-app/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/index.html -------------------------------------------------------------------------------- /example-app/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/main.ts -------------------------------------------------------------------------------- /example-app/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/polyfills.ts -------------------------------------------------------------------------------- /example-app/src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/test.ts -------------------------------------------------------------------------------- /example-app/src/theme/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/theme/variables.scss -------------------------------------------------------------------------------- /example-app/src/zone-flags.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/src/zone-flags.ts -------------------------------------------------------------------------------- /example-app/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/tsconfig.app.json -------------------------------------------------------------------------------- /example-app/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/tsconfig.json -------------------------------------------------------------------------------- /example-app/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/tsconfig.spec.json -------------------------------------------------------------------------------- /example-app/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adrynov/Capacitor-NFC-Plugin/HEAD/example-app/tslint.json --------------------------------------------------------------------------------