I have played with the app and connected it with my BLE module and after disconnected. Some times I will get this error message:
Bad arguments to Text
The operation Text cannot accept the arguments: ,[nothing]
Then only the button “End Application” appears!
It is not very bad, but an issue with the app. Perhaps it is a problem, that occurs in the background on the Samsung phone and for that reason the list view for selecting the BLE device does not appears on the Samsung phone?
If someone with a newer Samsung phone has a Bluetooth BLE app created that works with the list viewer to select the device, I am also very happy to take the blocks into my app to try it if then it will work on the Samsung phone! My HTC is now almost broken. I really need a new phone and hope for some help…
I am creating app which communicate with ESP32. So in first everything was okey and app worked, but after installed new android 10 security patch 2020 02 update, suddenly app won’t communicate at all. I am using Oneplus 6 phone. So I suspect that new security patch does’t allow to communicate with BLE extension 20181124 version. The older phone with older android can communicate without any problems.
I guess you have the same problem.
Ewpatton give direction to github with java files. So I sneak in and try to find something. And in BluetoothLE.java file, 73 line where you can fine userpermissions, “@UsesPermissions({ BLUETOOTH, BLUETOOTH_ADMIN, ACCESS_COARSE_LOCATION })”
Access_coarse_location is good for ANDROID 9 and lower, and for ANDROID 10 you need declare “ACCESS_FINE_LOCATION”. I do not know it’s a big deal, but when you developing in android studio in manifest you must declare that. https://developer.android.com/guide/topics/connectivity/bluetooth-le#java
Maybe I can change that by myself, but I do not know how to everything put in AIX format. Afcorse, you can open AIX file with simple winRAR or 7-zip and extract all java files.
That is a great information! Thank you very much!
I have tried to open the .aix file with 7-zip, but there are only .class files in the .jar files. It has two .jar files. But no .java files in there. One of them is called classes.jar and the other is AndroidRuntime.jar.
If one of the MIT members will fix it for future use would be great! Or if you, Justinas_Krauleidis, can make a .aix file to try it.
Hi,
I have the same problem and not being a ITer, all this info is too difficult for me.
My solution is maybe too easy but it works for me on a Samsung S8.
I just allowed the phone to communicate with other devices in the Bluetooth menu, and then the listpicker in my own program works fine and recognizes my ESP32 board.
Hi,
I had the same problem with my new Samsung Galaxy XCOVER 4S.
My app working with BLE module (HM-10) worked fine with Samsung Galaxy S7, S9+, Sony Xperia Z3, Z5 Compact.
XCOVER 4S was problem.
After reading this thread, I just tried to check if location feature in setting is enabled. It wasn't. Turning it on lead to devices appear in list:
Settings -> Location -> Turn on (slider)
After that, I got list of BLE devices in my AI2 app.
I was testing the app on new phone so I newer enabled the location before.
The Xperia Z3 (Android 6.0.1) behaves the same way - it just came to me with the location service already turned on in settings. If I disable the location, I am unble to list devices...
I've got the same issue with my Note 9. Android 10, latest BLE extension and AI2. Doesn't show the list of devices. I've tried everything I have managed to find as a suggestion. I think somethings broken from a recent update.
Dear all,
There's an upgrade of the BLE extension dated July 2020. With this update everything worked fine. Checkout this thread, there'll find the link: No devices found during BLE scan on android 10
BR
Frank
Can you tell us more about what you're trying to do? Does it work with a very simple app? What version of Android is your phone running? What BLE extension version are you using? Are location services turned on and did you grant permissions to the companion app while testing?
That was really a very good information! My old phone asked automatically to turn on the location feature. My new Samsung does not asked. As I have take a look at this, in settings - location, I had to enable it and now the BLE devices appear in the list! Great we could that get working
A big thanks to all who have helped here to find a solution! At the beginning I meant I was the only one who had this problem!
That is a good point! Better than nothing, but the function to ask and turn it on or disagree (same as the bluetooth connection) was very nice on my old phone. If bluetooth is turned off it askes too to turn it on with a little window.
We can turn on Bluetooth programmatically (note the Procedure 'ProcIsBluetoothEnabled') via an Activity Starter, but have not found a way to do the same with location - possibly intentional on Google's part, as a security measure.