├── .eslintrc.js ├── .gitignore ├── .npmignore ├── BleNitro.podspec ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE.md ├── android ├── CMakeLists.txt ├── build.gradle ├── fix-prefab.gradle ├── gradle.properties └── src │ └── main │ ├── AndroidManifest.xml │ ├── cpp │ └── cpp-adapter.cpp │ └── java │ └── com │ └── margelo │ └── nitro │ └── co │ └── zyke │ └── ble │ ├── BleNitroBleManager.kt │ ├── BleNitroBleManagerFactory.kt │ └── BleNitroPackage.kt ├── app.plugin.cjs ├── example ├── .gitignore ├── App.tsx ├── README.md ├── android │ ├── .gitignore │ ├── app │ │ ├── build.gradle │ │ ├── debug.keystore │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── java │ │ │ └── co │ │ │ │ └── zyke │ │ │ │ └── blenitroexample │ │ │ │ ├── MainActivity.kt │ │ │ │ └── MainApplication.kt │ │ │ └── res │ │ │ ├── drawable-hdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-mdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-xhdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-xxhdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable-xxxhdpi │ │ │ └── splashscreen_logo.png │ │ │ ├── drawable │ │ │ ├── ic_launcher_background.xml │ │ │ └── rn_edit_text_material.xml │ │ │ ├── mipmap-anydpi-v26 │ │ │ ├── ic_launcher.xml │ │ │ └── ic_launcher_round.xml │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.webp │ │ │ ├── ic_launcher_foreground.webp │ │ │ └── ic_launcher_round.webp │ │ │ ├── values-night │ │ │ └── colors.xml │ │ │ └── values │ │ │ ├── colors.xml │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ └── settings.gradle ├── app.json ├── assets │ ├── adaptive-icon.png │ ├── favicon.png │ ├── icon.png │ └── splash-icon.png ├── index.ts ├── ios │ ├── .gitignore │ ├── .xcode.env │ ├── BleNitroExample.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ └── BleNitroExample.xcscheme │ ├── BleNitroExample.xcworkspace │ │ └── contents.xcworkspacedata │ ├── BleNitroExample │ │ ├── AppDelegate.swift │ │ ├── BleNitroExample-Bridging-Header.h │ │ ├── BleNitroExample.entitlements │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ ├── App-Icon-1024x1024@1x.png │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ ├── SplashScreenBackground.colorset │ │ │ │ └── Contents.json │ │ │ └── SplashScreenLogo.imageset │ │ │ │ ├── Contents.json │ │ │ │ ├── image.png │ │ │ │ ├── image@2x.png │ │ │ │ └── image@3x.png │ │ ├── Info.plist │ │ ├── PrivacyInfo.xcprivacy │ │ ├── SplashScreen.storyboard │ │ └── Supporting │ │ │ └── Expo.plist │ ├── Podfile │ ├── Podfile.lock │ └── Podfile.properties.json ├── package-lock.json ├── package.json ├── src │ ├── bluetooth-instance.ts │ └── bluetooth.ts └── tsconfig.json ├── ios ├── BleNitroBleManager.swift ├── BleNitroBleManagerFactory.swift └── BlePeripheralDelegate.swift ├── jest.config.js ├── jest.setup.js ├── nitro.json ├── package.json ├── plugin ├── src │ ├── index.ts │ └── withBleNitro.ts └── tsconfig.json ├── react-native.config.js ├── src ├── __tests__ │ └── index.test.ts ├── index.ts ├── manager.ts ├── singleton.ts └── specs │ ├── NativeBleNitro.nitro.ts │ ├── NativeBleNitro.ts │ ├── NativeBleNitroFactory.nitro.ts │ └── NativeBleNitroFactory.ts ├── tsconfig.commonjs.json └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/.npmignore -------------------------------------------------------------------------------- /BleNitro.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/BleNitro.podspec -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/RELEASE.md -------------------------------------------------------------------------------- /android/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/CMakeLists.txt -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/fix-prefab.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/fix-prefab.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/cpp/cpp-adapter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/src/main/cpp/cpp-adapter.cpp -------------------------------------------------------------------------------- /android/src/main/java/com/margelo/nitro/co/zyke/ble/BleNitroBleManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/src/main/java/com/margelo/nitro/co/zyke/ble/BleNitroBleManager.kt -------------------------------------------------------------------------------- /android/src/main/java/com/margelo/nitro/co/zyke/ble/BleNitroBleManagerFactory.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/src/main/java/com/margelo/nitro/co/zyke/ble/BleNitroBleManagerFactory.kt -------------------------------------------------------------------------------- /android/src/main/java/com/margelo/nitro/co/zyke/ble/BleNitroPackage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/android/src/main/java/com/margelo/nitro/co/zyke/ble/BleNitroPackage.kt -------------------------------------------------------------------------------- /app.plugin.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/app.plugin.cjs -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/README.md -------------------------------------------------------------------------------- /example/android/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/.gitignore -------------------------------------------------------------------------------- /example/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/build.gradle -------------------------------------------------------------------------------- /example/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/debug.keystore -------------------------------------------------------------------------------- /example/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /example/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /example/android/app/src/main/java/co/zyke/blenitroexample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/java/co/zyke/blenitroexample/MainActivity.kt -------------------------------------------------------------------------------- /example/android/app/src/main/java/co/zyke/blenitroexample/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/java/co/zyke/blenitroexample/MainApplication.kt -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable-hdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable-mdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable-xhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable-xxhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable-xxxhdpi/splashscreen_logo.png -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_foreground.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /example/android/app/src/main/res/values-night/colors.xml: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /example/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /example/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/build.gradle -------------------------------------------------------------------------------- /example/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/gradle.properties -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /example/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /example/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/gradlew -------------------------------------------------------------------------------- /example/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/gradlew.bat -------------------------------------------------------------------------------- /example/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/android/settings.gradle -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/app.json -------------------------------------------------------------------------------- /example/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/assets/adaptive-icon.png -------------------------------------------------------------------------------- /example/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/assets/favicon.png -------------------------------------------------------------------------------- /example/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/assets/icon.png -------------------------------------------------------------------------------- /example/assets/splash-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/assets/splash-icon.png -------------------------------------------------------------------------------- /example/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/index.ts -------------------------------------------------------------------------------- /example/ios/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/.gitignore -------------------------------------------------------------------------------- /example/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/.xcode.env -------------------------------------------------------------------------------- /example/ios/BleNitroExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /example/ios/BleNitroExample.xcodeproj/xcshareddata/xcschemes/BleNitroExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample.xcodeproj/xcshareddata/xcschemes/BleNitroExample.xcscheme -------------------------------------------------------------------------------- /example/ios/BleNitroExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /example/ios/BleNitroExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/AppDelegate.swift -------------------------------------------------------------------------------- /example/ios/BleNitroExample/BleNitroExample-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/BleNitroExample-Bridging-Header.h -------------------------------------------------------------------------------- /example/ios/BleNitroExample/BleNitroExample.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/BleNitroExample.entitlements -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/AppIcon.appiconset/App-Icon-1024x1024@1x.png -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/SplashScreenBackground.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/SplashScreenBackground.colorset/Contents.json -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/Contents.json -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/image.png -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/image@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/image@2x.png -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/image@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Images.xcassets/SplashScreenLogo.imageset/image@3x.png -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Info.plist -------------------------------------------------------------------------------- /example/ios/BleNitroExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /example/ios/BleNitroExample/SplashScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/SplashScreen.storyboard -------------------------------------------------------------------------------- /example/ios/BleNitroExample/Supporting/Expo.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/BleNitroExample/Supporting/Expo.plist -------------------------------------------------------------------------------- /example/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/Podfile -------------------------------------------------------------------------------- /example/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/Podfile.lock -------------------------------------------------------------------------------- /example/ios/Podfile.properties.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/ios/Podfile.properties.json -------------------------------------------------------------------------------- /example/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/package-lock.json -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/bluetooth-instance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/src/bluetooth-instance.ts -------------------------------------------------------------------------------- /example/src/bluetooth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/src/bluetooth.ts -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /ios/BleNitroBleManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/ios/BleNitroBleManager.swift -------------------------------------------------------------------------------- /ios/BleNitroBleManagerFactory.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/ios/BleNitroBleManagerFactory.swift -------------------------------------------------------------------------------- /ios/BlePeripheralDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/ios/BlePeripheralDelegate.swift -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/jest.config.js -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/jest.setup.js -------------------------------------------------------------------------------- /nitro.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/nitro.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/package.json -------------------------------------------------------------------------------- /plugin/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/plugin/src/index.ts -------------------------------------------------------------------------------- /plugin/src/withBleNitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/plugin/src/withBleNitro.ts -------------------------------------------------------------------------------- /plugin/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/plugin/tsconfig.json -------------------------------------------------------------------------------- /react-native.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/react-native.config.js -------------------------------------------------------------------------------- /src/__tests__/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/__tests__/index.test.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/manager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/manager.ts -------------------------------------------------------------------------------- /src/singleton.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/singleton.ts -------------------------------------------------------------------------------- /src/specs/NativeBleNitro.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/specs/NativeBleNitro.nitro.ts -------------------------------------------------------------------------------- /src/specs/NativeBleNitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/specs/NativeBleNitro.ts -------------------------------------------------------------------------------- /src/specs/NativeBleNitroFactory.nitro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/specs/NativeBleNitroFactory.nitro.ts -------------------------------------------------------------------------------- /src/specs/NativeBleNitroFactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/src/specs/NativeBleNitroFactory.ts -------------------------------------------------------------------------------- /tsconfig.commonjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/tsconfig.commonjs.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zykeco/react-native-ble-nitro/HEAD/tsconfig.json --------------------------------------------------------------------------------