morteza ariyan
Member
hi,
I have a problem with HC 05 in android 10.
first of all I sat up the board like the one in the tutorial ( this tutorial ) and installed Bluetooth Terminal HC-05 to test whether it's working fine or not.
as you see in the picture by sending a character like "A" the green light turns on and by sending "B" it turns off.
Then I removed Bluetooth Terminal HC-05 and installed this tutorial's APK on my phone ( Samsung Galaxy A7 2018 with android 10) and lunched it. Unfortunately it doesn't connect. It just searches for the module but cant fund.
all of the permissions are granted.
by the way, when I downgrade my android to 9 it works without any problems
tested on: galaxy a7 and a9 2018 , xiaomi redmi note 8 , note 8 pro and note pro
any solotions?
I have a problem with HC 05 in android 10.
first of all I sat up the board like the one in the tutorial ( this tutorial ) and installed Bluetooth Terminal HC-05 to test whether it's working fine or not.
as you see in the picture by sending a character like "A" the green light turns on and by sending "B" it turns off.
Then I removed Bluetooth Terminal HC-05 and installed this tutorial's APK on my phone ( Samsung Galaxy A7 2018 with android 10) and lunched it. Unfortunately it doesn't connect. It just searches for the module but cant fund.
all of the permissions are granted.
by the way, when I downgrade my android to 9 it works without any problems
tested on: galaxy a7 and a9 2018 , xiaomi redmi note 8 , note 8 pro and note pro
any solotions?
Manifest:
AddManifestText(
<uses-sdk android:minSdkVersion="5" android:targetSdkVersion="29"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
CreateResourceFromFile(Macro, Themes.DarkTheme)
AddPermission(android.permission.ACCESS_COARSE_LOCATION)
AddPermission(android.permission.ACCESS_FINE_LOCATION)
AddPermission(android.permission.ACCESS_BACKGROUND_LOCATION)
AddPermission(android.permission.BLUETOOTH)
AddPermission(android.permission.BLUETOOTH_ADMIN)
AddReceiverText(Starter,<intent-filter>
<action android:name="android.bluetooth.device.action.FOUND" />
</intent-filter>)
'End of default text.