├── .babelrc ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .gitmodules ├── .watchmanconfig ├── LICENSE ├── README.md ├── android ├── build.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ └── java │ └── io │ └── github │ └── douglasjunior │ └── ReactNativeEasyBluetooth │ └── classic │ ├── ClassicModule.java │ └── ClassicPackage.java ├── app.json ├── index.js ├── jsconfig.json └── package.json /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react-native"] 3 | } 4 | -------------------------------------------------------------------------------- /.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/.buckconfig -------------------------------------------------------------------------------- /.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/.flowconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/README.md -------------------------------------------------------------------------------- /android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/build.gradle -------------------------------------------------------------------------------- /android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/gradle.properties -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/gradlew -------------------------------------------------------------------------------- /android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/gradlew.bat -------------------------------------------------------------------------------- /android/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/proguard-rules.pro -------------------------------------------------------------------------------- /android/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /android/src/main/java/io/github/douglasjunior/ReactNativeEasyBluetooth/classic/ClassicModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/src/main/java/io/github/douglasjunior/ReactNativeEasyBluetooth/classic/ClassicModule.java -------------------------------------------------------------------------------- /android/src/main/java/io/github/douglasjunior/ReactNativeEasyBluetooth/classic/ClassicPackage.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/android/src/main/java/io/github/douglasjunior/ReactNativeEasyBluetooth/classic/ClassicPackage.java -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/app.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/index.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/jsconfig.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/douglasjunior/react-native-easybluetooth-classic/HEAD/package.json --------------------------------------------------------------------------------