diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml
index aab3828d8..6578ebfef 100644
--- a/app/src/main/AndroidManifest.xml
+++ b/app/src/main/AndroidManifest.xml
@@ -162,6 +162,10 @@
+
+
+
+
diff --git a/app/src/main/java/org/autojs/autojs/ui/project/BuildActivity.java b/app/src/main/java/org/autojs/autojs/ui/project/BuildActivity.java
index 5a2e2c898..3670f7eb2 100644
--- a/app/src/main/java/org/autojs/autojs/ui/project/BuildActivity.java
+++ b/app/src/main/java/org/autojs/autojs/ui/project/BuildActivity.java
@@ -141,6 +141,9 @@ public class BuildActivity extends BaseActivity implements ApkBuilder.ProgressCa
put("android.permission.ACCESS_WIFI_STATE", R.string.text_permission_desc_access_wifi_state);
put("android.permission.BLUETOOTH", R.string.text_permission_desc_bluetooth);
put("android.permission.BLUETOOTH_ADMIN", R.string.text_permission_desc_bluetooth_admin);
+ put("android.permission.BLUETOOTH_CONNECT", R.string.text_permission_desc_bluetooth_connect);
+ put("android.permission.BLUETOOTH_SCAN", R.string.text_permission_desc_bluetooth_scan);
+ put("android.permission.BLUETOOTH_ADVERTISE", R.string.text_permission_desc_bluetooth_advertise);
put("android.permission.BROADCAST_CLOSE_SYSTEM_DIALOGS", R.string.text_permission_desc_broadcast_close_system_dialogs);
put("android.permission.CALL_PHONE", R.string.text_permission_desc_call_phone);
put("android.permission.CAMERA", R.string.text_permission_desc_camera);
diff --git a/app/src/main/res/values-ar/strings.xml b/app/src/main/res/values-ar/strings.xml
index d49e68be4..540566bdc 100644
--- a/app/src/main/res/values-ar/strings.xml
+++ b/app/src/main/res/values-ar/strings.xml
@@ -780,6 +780,9 @@
يسمح للتطبيق بإجراء عمليات الشراء داخل التطبيق
يسمح للتطبيق بالوصول إلى أجهزة Bluetooth
يسمح للتطبيق بتهيئة أجهزة Bluetooth
+ السماح للتطبيق بالوصول إلى أجهزة Bluetooth وحالة الاتصال
+ السماح للتطبيق بالبحث عن أجهزة Bluetooth القريبة
+ السماح للتطبيق بالإعلان عبر Bluetooth
يسمح للتطبيق بإرسال نية لإغلاق مربعات حوار النظام
يسمح للتطبيق بإجراء مكالمات هاتفية
يسمح للتطبيق بالوصول إلى الكاميرا
diff --git a/app/src/main/res/values-en/strings.xml b/app/src/main/res/values-en/strings.xml
index 934ec7f56..a7e0e55ce 100644
--- a/app/src/main/res/values-en/strings.xml
+++ b/app/src/main/res/values-en/strings.xml
@@ -775,6 +775,9 @@
Allow the app to perform in-app purchases
Allow the app to access Bluetooth devices
Allow the app to configure Bluetooth devices
+ Allow the app to access Bluetooth devices and connection state
+ Allow the app to scan for nearby Bluetooth devices
+ Allow the app to advertise via Bluetooth
Allow the app to send an intent to close system dialogs
Allow the app to make phone calls
Allow the app to access the camera
diff --git a/app/src/main/res/values-es/strings.xml b/app/src/main/res/values-es/strings.xml
index 224d5efef..107449b74 100644
--- a/app/src/main/res/values-es/strings.xml
+++ b/app/src/main/res/values-es/strings.xml
@@ -778,6 +778,9 @@
Permitir que la aplicación realice compras dentro de la aplicación
Permitir que la aplicación acceda a dispositivos Bluetooth
Permitir que la aplicación configure dispositivos Bluetooth
+ Permitir que la aplicación acceda a los dispositivos Bluetooth y al estado de conexión
+ Permitir que la aplicación busque dispositivos Bluetooth cercanos
+ Permitir que la aplicación se anuncie mediante Bluetooth
Permitir que la aplicación envíe una intención para cerrar los cuadros de diálogo del sistema
Permitir que la aplicación realice llamadas telefónicas
Permitir que la aplicación acceda a la cámara
diff --git a/app/src/main/res/values-fr/strings.xml b/app/src/main/res/values-fr/strings.xml
index 5965e13aa..e3c12fd11 100644
--- a/app/src/main/res/values-fr/strings.xml
+++ b/app/src/main/res/values-fr/strings.xml
@@ -778,6 +778,9 @@
Autoriser l\'application à effectuer des achats intégrés
Autoriser l\'application à accéder aux périphériques Bluetooth
Autoriser l\'application à configurer les périphériques Bluetooth
+ Autoriser l\'application à accéder aux périphériques et à l\'état de connexion Bluetooth
+ Autoriser l\'application à rechercher des périphériques Bluetooth à proximité
+ Autoriser l\'application à se rendre visible via Bluetooth
Autoriser l\'application à envoyer une intention pour fermer les boîtes de dialogue système
Autoriser l\'application à passer des appels téléphoniques
Autoriser l\'application à accéder à la caméra
diff --git a/app/src/main/res/values-ja/strings.xml b/app/src/main/res/values-ja/strings.xml
index 7ecb83aae..319bad7cb 100644
--- a/app/src/main/res/values-ja/strings.xml
+++ b/app/src/main/res/values-ja/strings.xml
@@ -779,6 +779,9 @@
アプリがアプリ内購入を実行することを許可します
アプリが Bluetooth デバイスにアクセスすることを許可します
アプリが Bluetooth デバイスを設定することを許可します
+ アプリが Bluetooth デバイスと接続状態にアクセスすることを許可します
+ アプリが近くの Bluetooth デバイスをスキャンすることを許可します
+ アプリが Bluetooth でアドバタイズすることを許可します
アプリがシステムダイアログを閉じるためのインテントを送信することを許可します
アプリが電話をかけることを許可します
アプリがカメラにアクセスすることを許可します
diff --git a/app/src/main/res/values-ko/strings.xml b/app/src/main/res/values-ko/strings.xml
index d20ea9c9b..693978f1e 100644
--- a/app/src/main/res/values-ko/strings.xml
+++ b/app/src/main/res/values-ko/strings.xml
@@ -780,6 +780,9 @@
앱이 인앱 구매를 수행하도록 허용합니다
앱이 블루투스 기기에 접근하도록 허용합니다
앱이 블루투스 기기를 구성하도록 허용합니다
+ 앱이 블루투스 장치 및 연결 상태에 접근하도록 허용합니다
+ 앱이 근처 블루투스 장치를 검색하도록 허용합니다
+ 앱이 블루투스로 광고하도록 허용합니다
앱이 시스템 대화 상자를 닫기 위한 인텐트를 보내도록 허용합니다
앱이 전화를 걸도록 허용합니다
앱이 카메라에 접근하도록 허용합니다
diff --git a/app/src/main/res/values-ru/strings.xml b/app/src/main/res/values-ru/strings.xml
index e86ef6d37..93e4f7773 100644
--- a/app/src/main/res/values-ru/strings.xml
+++ b/app/src/main/res/values-ru/strings.xml
@@ -778,6 +778,9 @@
Разрешить приложению выполнять покупки внутри приложения
Разрешить приложению доступ к устройствам Bluetooth
Разрешить приложению настраивать устройства Bluetooth
+ Разрешить приложению доступ к устройствам Bluetooth и состоянию подключения
+ Разрешить приложению сканировать близлежащие устройства Bluetooth
+ Разрешить приложению рекламировать себя через Bluetooth
Разрешить приложению отправлять намерение для закрытия системных диалогов
Разрешить приложению совершать телефонные звонки
Разрешить приложению доступ к камере
diff --git a/app/src/main/res/values-zh-rHK/strings.xml b/app/src/main/res/values-zh-rHK/strings.xml
index 6a6e08468..6fdbd7b53 100644
--- a/app/src/main/res/values-zh-rHK/strings.xml
+++ b/app/src/main/res/values-zh-rHK/strings.xml
@@ -776,6 +776,9 @@
允許應用執行應用內購買
允許應用訪問藍牙設備
允許應用配置藍牙設備
+ 允許應用訪問藍牙設備及連接狀態
+ 允許應用搜尋附近的藍牙設備
+ 允許應用透過藍牙廣播
允許應用發送一個意圖來關閉系統對話框
允許應用撥打電話
允許應用訪問相機
diff --git a/app/src/main/res/values-zh-rTW/strings.xml b/app/src/main/res/values-zh-rTW/strings.xml
index 0ea4a6c75..9dfe007f7 100644
--- a/app/src/main/res/values-zh-rTW/strings.xml
+++ b/app/src/main/res/values-zh-rTW/strings.xml
@@ -776,6 +776,9 @@
允許應用執行應用內購買
允許應用訪問藍牙設備
允許應用配置藍牙設備
+ 允許應用訪問藍牙設備及連接狀態
+ 允許應用搜尋附近的藍牙設備
+ 允許應用透過藍牙廣播
允許應用發送一個意圖來關閉系統對話框
允許應用撥打電話
允許應用訪問相機
diff --git a/app/src/main/res/values-zh/strings.xml b/app/src/main/res/values-zh/strings.xml
index 1564de5cd..bd0f82f7c 100644
--- a/app/src/main/res/values-zh/strings.xml
+++ b/app/src/main/res/values-zh/strings.xml
@@ -776,6 +776,9 @@
允许应用执行应用内购买
允许应用访问蓝牙设备
允许应用配置蓝牙设备
+ 允许应用访问蓝牙设备及连接状态
+ 允许应用扫描附近的蓝牙设备
+ 允许应用通过蓝牙广播
允许应用发送一个意图来关闭系统对话框
允许应用拨打电话
允许应用访问相机
diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml
index 9e986c5e5..7f78a86b2 100644
--- a/app/src/main/res/values/strings.xml
+++ b/app/src/main/res/values/strings.xml
@@ -1006,6 +1006,9 @@
Allow the app to perform in-app purchases
Allow the app to access Bluetooth devices
Allow the app to configure Bluetooth devices
+ Allow the app to access Bluetooth devices and connection state
+ Allow the app to scan for nearby Bluetooth devices
+ Allow the app to advertise via Bluetooth
Allow the app to send an intent to close system dialogs
Allow the app to make phone calls
Allow the app to access the camera