Welcome to the BChat-chat-via-bluetooth—Android-App wiki!
A Bluetooth-based Android application developed in Kotlin that allows two mobile devices to connect, pair, and exchange messages. This project demonstrates my expertise in Android development, utilizing the Android Bluetooth Adapter for device discovery, pairing, and communication.
Device Scanning: Search for nearby Bluetooth devices. Pre-Paired Devices: View and connect to devices that are already paired. Real-Time Messaging: Send and receive messages between two connected devices. Kotlin Coroutines: Used for asynchronous operations during device discovery and connection. Bluetooth Adapter Integration: Utilizes the Android Bluetooth Adapter API for communication.
To run this project, follow these steps:
Clone the repository:
https://github.com/nazmos-sakib/BChat-chat-via-bluetooth---Android-App/
Permissions for Bluetooth and Bluetooth Admin are required in the AndroidManifest.xml: xml
<uses-permission android:name="android.permission.BLUETOOTH" android:maxSdkVersion="30"/>
<uses-permission android:name="android.permission.BLUETOOTH_SCAN" android:usesPermissionFlags="neverForLocation" tools:targetApi="s" />
<uses-permission android:name="android.permission.BLUETOOTH_CONNECT" />
<uses-feature android:name="android.hardware.bluetooth" />
The app scans for nearby Bluetooth devices using:
val bluetoothAdapter: BluetoothAdapter? = BluetoothAdapter.getDefaultAdapter()
bluetoothAdapter?.startDiscovery()
Results are filtered and shown in a LazyColumn.
val pairedDevices: Set<BluetoothDevice>? = bluetoothAdapter?.bondedDevices
val socket = device.createRfcommSocketToServiceRecord(uuid)
socket.connect()
val outputStream: OutputStream = socket.outputStream
outputStream.write(messageBytes)
The MVVM (Model-View-ViewModel) pattern is used in this project to cleanly separate the user interface (UI) from the business logic, making the app easier to maintain and test. Here’s how each layer contributes to the app:
ViewModel: Acts as the bridge between the Model and the View. It holds UI-related data that survives configuration changes (like screen rotations). In this app, the ViewModel manages:
Device scanning results. The list of paired devices. Connection statuses and messaging logic. The ViewModel uses LiveData to expose data to the View, allowing the app to respond to changes without requiring manual updates.
View: This represents the UI, including the activities and fragments. The View observes the ViewModel for changes and updates the UI accordingly. It doesn’t handle any business logic, making it easier to keep the UI layer clean and focused only on presenting the data. This approach ensures that the app’s business logic is decoupled from the UI, which makes the code more maintainable and testable.
The project is built following Clean Architecture principles, which helps to ensure a clear separation of concerns. Clean Architecture divides the codebase into multiple layers, allowing for a modular and scalable application. Here’s how Clean Architecture is applied in this project:
Domain Layer: This is the core of the application. It contains the business logic, including entities (such as Bluetooth device data) and use cases (e.g., “scan for devices,” “connect to a device”). The domain layer is independent of any frameworks, UI, or data sources, making it reusable and testable.
Data Layer: The data layer contains repositories that implement the business logic defined in the domain layer. It manages data retrieval and communication with external systems (in this case, the Android Bluetooth Adapter API). By using repositories, the data layer abstracts away the details of the data sources, making the domain layer completely unaware of how data is fetched or stored.
Presentation Layer: This includes the ViewModels and UI components. The ViewModel communicates with the domain layer to retrieve or manipulate data and then provides this data to the UI layer. The UI layer (View) observes the ViewModel and updates itself automatically when the data changes, thanks to LiveData.
Contributions are welcome! Please feel free to submit a Pull Request or open an Issue if you find any bugs or have feature requests.