Java tutorial
//package com.java2s; import android.bluetooth.BluetoothDevice; import android.util.Log; import java.lang.reflect.Method; public class Main { public static void unpairDevice(BluetoothDevice device) { try { Method m = device.getClass().getMethod("removeBond", (Class[]) null); m.invoke(device, (Object[]) null); } catch (Exception e) { Log.d("BlueUtils", e.getMessage()); } } }