askarsyzdykov / bluetoothkit-android

📲 Lightweight Bluetooth library for Android

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

📲 Lightweight Bluetooth library for Android

License:MIT License


Languages

Language:Kotlin 88.6%Language:Java 11.4%