├── .gitignore ├── Logotype primary.png ├── README.md ├── app ├── .gitignore ├── build.gradle ├── proguard-rules.pro ├── release │ ├── app-release.apk │ └── output.json └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── aflak │ │ └── libraries │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── me │ │ │ └── aflak │ │ │ └── libraries │ │ │ ├── ChatActivity.java │ │ │ ├── ScanActivity.java │ │ │ └── SplashScreen.java │ └── res │ │ ├── layout │ │ ├── activity_chat.xml │ │ └── activity_scan.xml │ │ ├── mipmap-hdpi │ │ └── ic_launcher.png │ │ ├── mipmap-ldpi │ │ └── ic_launcher.png │ │ ├── mipmap-mdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxhdpi │ │ └── ic_launcher.png │ │ ├── mipmap-xxxhdpi │ │ └── ic_launcher.png │ │ ├── values-w820dp │ │ └── dimens.xml │ │ └── values │ │ ├── colors.xml │ │ ├── dimens.xml │ │ ├── strings.xml │ │ └── styles.xml │ └── test │ └── java │ └── me │ └── aflak │ └── libraries │ └── ExampleUnitTest.java ├── bluetooth ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── me │ │ └── aflak │ │ └── bluetooth │ │ └── ApplicationTest.java │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── me │ │ │ └── aflak │ │ │ └── bluetooth │ │ │ ├── Bluetooth.java │ │ │ ├── constants │ │ │ ├── DeviceError.java │ │ │ └── DiscoveryError.java │ │ │ ├── interfaces │ │ │ ├── BluetoothCallback.java │ │ │ ├── DeviceCallback.java │ │ │ └── DiscoveryCallback.java │ │ │ ├── reader │ │ │ ├── LineReader.java │ │ │ └── SocketReader.java │ │ │ └── utils │ │ │ ├── OnFailureListener.java │ │ │ ├── OnSuccessListener.java │ │ │ └── ThreadHelper.java │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── me │ └── aflak │ └── bluetooth │ └── ExampleUnitTest.java ├── doc ├── allclasses-frame.html ├── allclasses-noframe.html ├── constant-values.html ├── deprecated-list.html ├── help-doc.html ├── index-files │ ├── index-1.html │ ├── index-10.html │ ├── index-11.html │ ├── index-12.html │ ├── index-13.html │ ├── index-14.html │ ├── index-15.html │ ├── index-2.html │ ├── index-3.html │ ├── index-4.html │ ├── index-5.html │ ├── index-6.html │ ├── index-7.html │ ├── index-8.html │ └── index-9.html ├── index.html ├── me │ └── aflak │ │ ├── bluetooth │ │ ├── Bluetooth.html │ │ ├── constants │ │ │ ├── DeviceError.html │ │ │ ├── DiscoveryError.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── interfaces │ │ │ ├── BluetoothCallback.html │ │ │ ├── DeviceCallback.html │ │ │ ├── DiscoveryCallback.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ ├── package-tree.html │ │ ├── reader │ │ │ ├── LineReader.html │ │ │ ├── SocketReader.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ └── utils │ │ │ ├── OnFailureListener.html │ │ │ ├── OnSuccessListener.html │ │ │ ├── ThreadHelper.html │ │ │ ├── package-frame.html │ │ │ ├── package-summary.html │ │ │ └── package-tree.html │ │ └── libraries │ │ ├── ChatActivity.html │ │ ├── ScanActivity.html │ │ ├── SplashScreen.html │ │ ├── package-frame.html │ │ ├── package-summary.html │ │ └── package-tree.html ├── overview-frame.html ├── overview-summary.html ├── overview-tree.html ├── package-list ├── script.js └── stylesheet.css ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat └── settings.gradle /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/.gitignore -------------------------------------------------------------------------------- /Logotype primary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/Logotype primary.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/README.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/build.gradle -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/release/app-release.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/release/app-release.apk -------------------------------------------------------------------------------- /app/release/output.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/release/output.json -------------------------------------------------------------------------------- /app/src/androidTest/java/me/aflak/libraries/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/androidTest/java/me/aflak/libraries/ApplicationTest.java -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/me/aflak/libraries/ChatActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/java/me/aflak/libraries/ChatActivity.java -------------------------------------------------------------------------------- /app/src/main/java/me/aflak/libraries/ScanActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/java/me/aflak/libraries/ScanActivity.java -------------------------------------------------------------------------------- /app/src/main/java/me/aflak/libraries/SplashScreen.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/java/me/aflak/libraries/SplashScreen.java -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_chat.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/layout/activity_chat.xml -------------------------------------------------------------------------------- /app/src/main/res/layout/activity_scan.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/layout/activity_scan.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/mipmap-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /app/src/main/res/values-w820dp/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/values-w820dp/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/values/dimens.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /app/src/test/java/me/aflak/libraries/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/app/src/test/java/me/aflak/libraries/ExampleUnitTest.java -------------------------------------------------------------------------------- /bluetooth/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /bluetooth/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/build.gradle -------------------------------------------------------------------------------- /bluetooth/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/proguard-rules.pro -------------------------------------------------------------------------------- /bluetooth/src/androidTest/java/me/aflak/bluetooth/ApplicationTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/androidTest/java/me/aflak/bluetooth/ApplicationTest.java -------------------------------------------------------------------------------- /bluetooth/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/Bluetooth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/Bluetooth.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/constants/DeviceError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/constants/DeviceError.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/constants/DiscoveryError.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/constants/DiscoveryError.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/interfaces/BluetoothCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/interfaces/BluetoothCallback.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/interfaces/DeviceCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/interfaces/DeviceCallback.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/interfaces/DiscoveryCallback.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/interfaces/DiscoveryCallback.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/reader/LineReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/reader/LineReader.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/reader/SocketReader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/reader/SocketReader.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/utils/OnFailureListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/utils/OnFailureListener.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/utils/OnSuccessListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/utils/OnSuccessListener.java -------------------------------------------------------------------------------- /bluetooth/src/main/java/me/aflak/bluetooth/utils/ThreadHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/java/me/aflak/bluetooth/utils/ThreadHelper.java -------------------------------------------------------------------------------- /bluetooth/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bluetooth/src/test/java/me/aflak/bluetooth/ExampleUnitTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/bluetooth/src/test/java/me/aflak/bluetooth/ExampleUnitTest.java -------------------------------------------------------------------------------- /doc/allclasses-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/allclasses-frame.html -------------------------------------------------------------------------------- /doc/allclasses-noframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/allclasses-noframe.html -------------------------------------------------------------------------------- /doc/constant-values.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/constant-values.html -------------------------------------------------------------------------------- /doc/deprecated-list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/deprecated-list.html -------------------------------------------------------------------------------- /doc/help-doc.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/help-doc.html -------------------------------------------------------------------------------- /doc/index-files/index-1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-1.html -------------------------------------------------------------------------------- /doc/index-files/index-10.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-10.html -------------------------------------------------------------------------------- /doc/index-files/index-11.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-11.html -------------------------------------------------------------------------------- /doc/index-files/index-12.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-12.html -------------------------------------------------------------------------------- /doc/index-files/index-13.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-13.html -------------------------------------------------------------------------------- /doc/index-files/index-14.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-14.html -------------------------------------------------------------------------------- /doc/index-files/index-15.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-15.html -------------------------------------------------------------------------------- /doc/index-files/index-2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-2.html -------------------------------------------------------------------------------- /doc/index-files/index-3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-3.html -------------------------------------------------------------------------------- /doc/index-files/index-4.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-4.html -------------------------------------------------------------------------------- /doc/index-files/index-5.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-5.html -------------------------------------------------------------------------------- /doc/index-files/index-6.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-6.html -------------------------------------------------------------------------------- /doc/index-files/index-7.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-7.html -------------------------------------------------------------------------------- /doc/index-files/index-8.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-8.html -------------------------------------------------------------------------------- /doc/index-files/index-9.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index-files/index-9.html -------------------------------------------------------------------------------- /doc/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/index.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/Bluetooth.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/Bluetooth.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/constants/DeviceError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/constants/DeviceError.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/constants/DiscoveryError.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/constants/DiscoveryError.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/constants/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/constants/package-frame.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/constants/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/constants/package-summary.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/constants/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/constants/package-tree.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/interfaces/BluetoothCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/interfaces/BluetoothCallback.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/interfaces/DeviceCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/interfaces/DeviceCallback.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/interfaces/DiscoveryCallback.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/interfaces/DiscoveryCallback.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/interfaces/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/interfaces/package-frame.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/interfaces/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/interfaces/package-summary.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/interfaces/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/interfaces/package-tree.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/package-frame.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/package-summary.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/package-tree.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/reader/LineReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/reader/LineReader.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/reader/SocketReader.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/reader/SocketReader.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/reader/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/reader/package-frame.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/reader/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/reader/package-summary.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/reader/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/reader/package-tree.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/utils/OnFailureListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/utils/OnFailureListener.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/utils/OnSuccessListener.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/utils/OnSuccessListener.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/utils/ThreadHelper.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/utils/ThreadHelper.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/utils/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/utils/package-frame.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/utils/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/utils/package-summary.html -------------------------------------------------------------------------------- /doc/me/aflak/bluetooth/utils/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/bluetooth/utils/package-tree.html -------------------------------------------------------------------------------- /doc/me/aflak/libraries/ChatActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/libraries/ChatActivity.html -------------------------------------------------------------------------------- /doc/me/aflak/libraries/ScanActivity.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/libraries/ScanActivity.html -------------------------------------------------------------------------------- /doc/me/aflak/libraries/SplashScreen.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/libraries/SplashScreen.html -------------------------------------------------------------------------------- /doc/me/aflak/libraries/package-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/libraries/package-frame.html -------------------------------------------------------------------------------- /doc/me/aflak/libraries/package-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/libraries/package-summary.html -------------------------------------------------------------------------------- /doc/me/aflak/libraries/package-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/me/aflak/libraries/package-tree.html -------------------------------------------------------------------------------- /doc/overview-frame.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/overview-frame.html -------------------------------------------------------------------------------- /doc/overview-summary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/overview-summary.html -------------------------------------------------------------------------------- /doc/overview-tree.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/overview-tree.html -------------------------------------------------------------------------------- /doc/package-list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/package-list -------------------------------------------------------------------------------- /doc/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/script.js -------------------------------------------------------------------------------- /doc/stylesheet.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/doc/stylesheet.css -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/omaraflak/Bluetooth-Library/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':app', ':bluetooth' 2 | --------------------------------------------------------------------------------