├── bluetooth-spp-terminal ├── .gitignore ├── src │ └── main │ │ ├── res │ │ ├── drawable-hdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_action_device_bluetooth.png │ │ │ └── ic_action_device_bluetooth_connected.png │ │ ├── drawable-mdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_action_device_bluetooth.png │ │ │ └── ic_action_device_bluetooth_connected.png │ │ ├── drawable-xhdpi │ │ │ ├── ic_launcher.png │ │ │ ├── ic_action_device_bluetooth.png │ │ │ └── ic_action_device_bluetooth_connected.png │ │ ├── values │ │ │ ├── dimens.xml │ │ │ ├── styles.xml │ │ │ ├── arrays.xml │ │ │ ├── preferences.xml │ │ │ └── strings.xml │ │ ├── drawable-xxhdpi │ │ │ ├── ic_action_device_bluetooth.png │ │ │ └── ic_action_device_bluetooth_connected.png │ │ ├── drawable-xxxhdpi │ │ │ ├── ic_action_device_bluetooth.png │ │ │ └── ic_action_device_bluetooth_connected.png │ │ ├── layout │ │ │ ├── device_list.xml │ │ │ ├── device_name.xml │ │ │ └── activity_terminal.xml │ │ ├── menu │ │ │ └── device_control_activity.xml │ │ ├── values-ru │ │ │ └── strings.xml │ │ └── xml │ │ │ └── settings_activity.xml │ │ ├── java │ │ └── ru │ │ │ └── sash0k │ │ │ └── bluetooth_terminal │ │ │ ├── Const.java │ │ │ ├── DeviceData.java │ │ │ ├── activity │ │ │ ├── SettingsActivity.java │ │ │ ├── BaseActivity.java │ │ │ └── DeviceControlActivity.java │ │ │ ├── bluetooth │ │ │ ├── DeviceListActivity.java │ │ │ ├── BluetoothUtils.java │ │ │ └── DeviceConnector.java │ │ │ └── Utils.java │ │ └── AndroidManifest.xml ├── build.gradle └── proguard-rules.txt ├── settings.gradle ├── fastlane └── metadata │ └── android │ ├── en-US │ ├── full_description.txt │ ├── changelogs │ │ └── 4.txt │ ├── short_description.txt │ └── images │ │ ├── icon.png │ │ └── phoneScreenshots │ │ ├── 1.png │ │ └── 2.png │ └── ru │ ├── short_description.txt │ ├── changelogs │ └── 4.txt │ └── full_description.txt ├── icon.xcf ├── .idea ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── vcs.xml ├── compiler.xml ├── gradle.xml ├── jarRepositories.xml ├── modules.xml └── misc.xml ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── .gitignore ├── Bluetooth-spp-terminal.iml ├── bluetooth-spp-terminal.iml ├── gradle.properties ├── README.md ├── gradlew └── LICENSE /bluetooth-spp-terminal/.gitignore: -------------------------------------------------------------------------------- 1 | /build 2 | -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | include ':bluetooth-spp-terminal' 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | ./short_description.txt -------------------------------------------------------------------------------- /icon.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/icon.xcf -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | * fix: permissions for Android 12+ 2 | * feat: material theme -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Terminal for Bluetooth SPP devices (HC-05, HC-06 and others) -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/short_description.txt: -------------------------------------------------------------------------------- 1 | Терминал для устройств Bluetooth SPP (HC-05, HC-06 и подобные) -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/changelogs/4.txt: -------------------------------------------------------------------------------- 1 | * fix: проблема с отзывом разрешения на Android 12+ 2 | * feat: material theme -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.iml 2 | .gradle 3 | /local.properties 4 | /.idea/workspace.xml 5 | /.idea/libraries 6 | .DS_Store 7 | /build 8 | /captures 9 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/1.png -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/2.png -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/full_description.txt: -------------------------------------------------------------------------------- 1 | Приложение подходит для разработки и отладки устройств, реализующих обмен через профиль SPP Bluetooth (модули HC-05, HC-06 и подобные). -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/values/dimens.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 5dp 4 | 5 | -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-hdpi/ic_action_device_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-hdpi/ic_action_device_bluetooth.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-mdpi/ic_action_device_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-mdpi/ic_action_device_bluetooth.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xhdpi/ic_action_device_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xhdpi/ic_action_device_bluetooth.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xxhdpi/ic_action_device_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xxhdpi/ic_action_device_bluetooth.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xxxhdpi/ic_action_device_bluetooth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xxxhdpi/ic_action_device_bluetooth.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-hdpi/ic_action_device_bluetooth_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-hdpi/ic_action_device_bluetooth_connected.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-mdpi/ic_action_device_bluetooth_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-mdpi/ic_action_device_bluetooth_connected.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xhdpi/ic_action_device_bluetooth_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xhdpi/ic_action_device_bluetooth_connected.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xxhdpi/ic_action_device_bluetooth_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xxhdpi/ic_action_device_bluetooth_connected.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/drawable-xxxhdpi/ic_action_device_bluetooth_connected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Sash0k/bluetooth-spp-terminal/HEAD/bluetooth-spp-terminal/src/main/res/drawable-xxxhdpi/ic_action_device_bluetooth_connected.png -------------------------------------------------------------------------------- /bluetooth-spp-terminal/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 |