Solve permission issues when performing btDiscoverAndGetResults
diff --git a/src/main/java/com/google/android/mobly/snippet/bundled/bluetooth/BluetoothAdapterSnippet.java b/src/main/java/com/google/android/mobly/snippet/bundled/bluetooth/BluetoothAdapterSnippet.java
index 6a22630..4c28cae 100644
--- a/src/main/java/com/google/android/mobly/snippet/bundled/bluetooth/BluetoothAdapterSnippet.java
+++ b/src/main/java/com/google/android/mobly/snippet/bundled/bluetooth/BluetoothAdapterSnippet.java
@@ -191,8 +191,8 @@
         return mBluetoothAdapter.getName();
     }
 
-    @Rpc(description = "Automatically confirm the bt pairing request.")
-    public void btConfirmPair() throws Throwable {
+    @Rpc(description = "Automatically confirm the incoming BT pairing request.")
+    public void btAutoConfirmIncomingPair() throws Throwable {
         mContext.registerReceiver(
                 new PairingBroadcastReceiver(mContext), PairingBroadcastReceiver.filter);
     }