用于拦截蓝牙API的安卓框架,无需root(A library of android for hooking Bluetooth API,Root is not required)
1/通过注入蓝牙相关服务,拦截APP所有关于蓝牙的操作(目前主要是BLE相关操作),
比如获取蓝牙状态,gatt连接,发现服务,发送数据,接收数据,设置mtu大小等等。
2/整个注入过程不需要修改原APP的代码(即无侵入式),
仅需要在Application::onCreate方法里调用OkBluetoothHook::inject即可完成对蓝牙服务的注入。
1. android aidl和binder机制
2. JAVA反射调用
android 9.0及更高版本突破对hide api调用的限制
3. 代理模式
使用动态代理或静态代理实现代码拦截
4. 蓝牙相关的AIDL服务
IBluetoothManager, IBluetooth,IBluetoothGatt,IBluetoothGattCallback等
直接引用OkBluetoothHook.jar, 或者implementation project(':OkBluetoothHook'),或者以下两个步骤:
1.在工程根目录的build.gradle添加:
allprojects {
repositories {
maven { url 'https://www.jitpack.io' }
}
}
2.在依赖OkBluetoothHook模块的build.gradle添加:
dependencies {
implementation 'com.github.okbean:OkBluetoothHook:1.0.3'
}