├── .bzrignore ├── .classpath ├── .gitignore ├── .project ├── AUTHORS ├── AndroidStudio.md ├── COPYING ├── README.md ├── bluetoothviewer-full ├── build.gradle └── src │ └── main │ └── AndroidManifest.xml ├── bluetoothviewer-lite ├── build.gradle └── src │ └── main │ └── AndroidManifest.xml ├── bluetoothviewer ├── build.gradle └── src │ ├── main │ ├── AndroidManifest.xml │ ├── assets │ │ └── samples │ │ │ ├── binary │ │ │ └── echo │ │ │ ├── line-by-line │ │ │ ├── AndroidGpsSample.csv │ │ │ ├── CitySenspodSample.csv │ │ │ └── EcoSenspodSample.csv │ │ │ └── zephyr │ │ │ └── ZephyrBioHarnessSample.base64 │ ├── java │ │ └── net │ │ │ └── bluetoothviewer │ │ │ ├── BluetoothAdapterDelegate.java │ │ │ ├── BluetoothAdapterFactory.java │ │ │ ├── BluetoothAdapterWrapper.java │ │ │ ├── BluetoothDeviceConnector.java │ │ │ ├── BluetoothViewer.java │ │ │ ├── DeviceConnector.java │ │ │ ├── DeviceListActivity.java │ │ │ ├── MessageHandler.java │ │ │ ├── MessageHandlerImpl.java │ │ │ ├── MockBinaryConnector.java │ │ │ ├── MockLineByLineConnector.java │ │ │ ├── NullBluetoothWrapper.java │ │ │ ├── NullDeviceConnector.java │ │ │ ├── SettingsActivity.java │ │ │ ├── application │ │ │ ├── BluetoothViewerApplication.java │ │ │ ├── BluetoothViewerFullApplication.java │ │ │ └── BluetoothViewerLiteApplication.java │ │ │ └── util │ │ │ ├── ApplicationUtils.java │ │ │ ├── AssetUtils.java │ │ │ ├── EmailUtils.java │ │ │ ├── IOUtils.java │ │ │ └── TextUtils.java │ └── res │ │ ├── drawable-hdpi │ │ ├── launcher_main.png │ │ ├── toolbar_btn_connect.png │ │ ├── toolbar_btn_disconnect.png │ │ ├── toolbar_btn_pause.png │ │ └── toolbar_btn_play.png │ │ ├── drawable-land │ │ └── background_main.png │ │ ├── drawable-ldpi │ │ ├── launcher_main.png │ │ ├── toolbar_btn_connect.png │ │ ├── toolbar_btn_disconnect.png │ │ ├── toolbar_btn_pause.png │ │ └── toolbar_btn_play.png │ │ ├── drawable-mdpi │ │ ├── launcher_main.png │ │ ├── toolbar_btn_connect.png │ │ ├── toolbar_btn_disconnect.png │ │ ├── toolbar_btn_pause.png │ │ └── toolbar_btn_play.png │ │ ├── drawable-xhdpi │ │ ├── launcher_main.png │ │ ├── toolbar_btn_connect.png │ │ ├── toolbar_btn_disconnect.png │ │ ├── toolbar_btn_pause.png │ │ └── toolbar_btn_play.png │ │ ├── drawable │ │ ├── background_main.png │ │ └── toolbarbg.xml │ │ ├── layout │ │ ├── bluetoothviewer.xml │ │ ├── device_list.xml │ │ ├── device_name.xml │ │ └── message.xml │ │ ├── menu │ │ └── main.xml │ │ ├── values │ │ ├── strings.xml │ │ └── style.xml │ │ └── xml │ │ └── settings.xml │ └── test │ └── java │ └── net │ └── bluetoothviewer │ └── util │ └── TextUtilsTest.java ├── docs └── senspod.md ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── graphics ├── Makefile ├── Makefile.readme ├── app-screenshots │ ├── mock-devices.png │ ├── settings.png │ └── start.png ├── play │ └── feature.png └── src │ ├── launcher_main.png │ ├── toolbar_btn_connect.png │ ├── toolbar_btn_disconnect.png │ ├── toolbar_btn_pause.png │ └── toolbar_btn_play.png ├── scripts ├── build.sh └── config.sh ├── settings.gradle └── todo.md /.bzrignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/.bzrignore -------------------------------------------------------------------------------- /.classpath: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/.classpath -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/.gitignore -------------------------------------------------------------------------------- /.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/.project -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/AUTHORS -------------------------------------------------------------------------------- /AndroidStudio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/AndroidStudio.md -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/README.md -------------------------------------------------------------------------------- /bluetoothviewer-full/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer-full/build.gradle -------------------------------------------------------------------------------- /bluetoothviewer-full/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer-full/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bluetoothviewer-lite/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer-lite/build.gradle -------------------------------------------------------------------------------- /bluetoothviewer-lite/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer-lite/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bluetoothviewer/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/build.gradle -------------------------------------------------------------------------------- /bluetoothviewer/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/assets/samples/binary/echo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/assets/samples/binary/echo -------------------------------------------------------------------------------- /bluetoothviewer/src/main/assets/samples/line-by-line/AndroidGpsSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/assets/samples/line-by-line/AndroidGpsSample.csv -------------------------------------------------------------------------------- /bluetoothviewer/src/main/assets/samples/line-by-line/CitySenspodSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/assets/samples/line-by-line/CitySenspodSample.csv -------------------------------------------------------------------------------- /bluetoothviewer/src/main/assets/samples/line-by-line/EcoSenspodSample.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/assets/samples/line-by-line/EcoSenspodSample.csv -------------------------------------------------------------------------------- /bluetoothviewer/src/main/assets/samples/zephyr/ZephyrBioHarnessSample.base64: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/assets/samples/zephyr/ZephyrBioHarnessSample.base64 -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothAdapterDelegate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothAdapterDelegate.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothAdapterFactory.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothAdapterFactory.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothAdapterWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothAdapterWrapper.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothDeviceConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothDeviceConnector.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothViewer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/BluetoothViewer.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/DeviceConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/DeviceConnector.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/DeviceListActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/DeviceListActivity.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/MessageHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/MessageHandler.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/MessageHandlerImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/MessageHandlerImpl.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/MockBinaryConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/MockBinaryConnector.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/MockLineByLineConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/MockLineByLineConnector.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/NullBluetoothWrapper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/NullBluetoothWrapper.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/NullDeviceConnector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/NullDeviceConnector.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/SettingsActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/SettingsActivity.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/application/BluetoothViewerApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/application/BluetoothViewerApplication.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/application/BluetoothViewerFullApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/application/BluetoothViewerFullApplication.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/application/BluetoothViewerLiteApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/application/BluetoothViewerLiteApplication.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/util/ApplicationUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/util/ApplicationUtils.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/util/AssetUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/util/AssetUtils.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/util/EmailUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/util/EmailUtils.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/util/IOUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/util/IOUtils.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/java/net/bluetoothviewer/util/TextUtils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/java/net/bluetoothviewer/util/TextUtils.java -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-hdpi/launcher_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-hdpi/launcher_main.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_connect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_disconnect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_pause.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-hdpi/toolbar_btn_play.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-land/background_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-land/background_main.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-ldpi/launcher_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-ldpi/launcher_main.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_connect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_disconnect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_pause.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-ldpi/toolbar_btn_play.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-mdpi/launcher_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-mdpi/launcher_main.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_connect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_disconnect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_pause.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-mdpi/toolbar_btn_play.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-xhdpi/launcher_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-xhdpi/launcher_main.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_connect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_disconnect.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_pause.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable-xhdpi/toolbar_btn_play.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable/background_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable/background_main.png -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/drawable/toolbarbg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/drawable/toolbarbg.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/layout/bluetoothviewer.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/layout/bluetoothviewer.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/layout/device_list.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/layout/device_list.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/layout/device_name.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/layout/device_name.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/layout/message.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/layout/message.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/menu/main.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/menu/main.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/values/style.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/values/style.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/main/res/xml/settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/main/res/xml/settings.xml -------------------------------------------------------------------------------- /bluetoothviewer/src/test/java/net/bluetoothviewer/util/TextUtilsTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/bluetoothviewer/src/test/java/net/bluetoothviewer/util/TextUtilsTest.java -------------------------------------------------------------------------------- /docs/senspod.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/docs/senspod.md -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/gradlew.bat -------------------------------------------------------------------------------- /graphics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/Makefile -------------------------------------------------------------------------------- /graphics/Makefile.readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/Makefile.readme -------------------------------------------------------------------------------- /graphics/app-screenshots/mock-devices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/app-screenshots/mock-devices.png -------------------------------------------------------------------------------- /graphics/app-screenshots/settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/app-screenshots/settings.png -------------------------------------------------------------------------------- /graphics/app-screenshots/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/app-screenshots/start.png -------------------------------------------------------------------------------- /graphics/play/feature.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/play/feature.png -------------------------------------------------------------------------------- /graphics/src/launcher_main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/src/launcher_main.png -------------------------------------------------------------------------------- /graphics/src/toolbar_btn_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/src/toolbar_btn_connect.png -------------------------------------------------------------------------------- /graphics/src/toolbar_btn_disconnect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/src/toolbar_btn_disconnect.png -------------------------------------------------------------------------------- /graphics/src/toolbar_btn_pause.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/src/toolbar_btn_pause.png -------------------------------------------------------------------------------- /graphics/src/toolbar_btn_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/graphics/src/toolbar_btn_play.png -------------------------------------------------------------------------------- /scripts/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/scripts/build.sh -------------------------------------------------------------------------------- /scripts/config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/scripts/config.sh -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/settings.gradle -------------------------------------------------------------------------------- /todo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/janosgyerik/bluetoothviewer/HEAD/todo.md --------------------------------------------------------------------------------