/bluetoothkit-android

📲 Lightweight Bluetooth library for Android

Primary LanguageKotlinMIT LicenseMIT

Android Arsenal JitPack License MIT

BluetoothKit is an incredibly lightweight and simple open source library to interface with Bluetooth devices on Android.

Setup

Add this to your build.gradle

allprojects {
  repositories {
    ...
    maven { url 'https://jitpack.io' }
  }
}

then add the dependency

dependencies {
  implementation 'com.github.sirvar:bluetoothkit-android:v0.1'
}

Usage

Initialize

val bluetoothKit: BluetoothKit = BluetoothKit()

Enable Bluetooth

bluetoothKit.enable()

Get Device

val device = bluetoothKit.getDeviceByName("Rikin's AirPods")

Connect Device

bluetoothKit.connect(device)

That's it

Check out the complete docs in the wiki

Made with ❤ by Rikin Katyal