Android Question BLE example -missing parameter (solved)

f0raster0

Well-Known Member
Licensed User
Longtime User
Hi
I just downloaded the example:
https://www.b4x.com/android/forum/threads/ble-2-bluetooth-low-energy.59937/

What is the missing parameter here:
Sub DataAvailable (Service As String, Characteristics As Map)
pbReadData.Visible = False
clv.Add(CreateServiceItem(Service), "")
For Each id As String In Characteristics.Keys
clv.Add(CreateCharacteristicItem(id, Characteristics.Get(id)), "")
Next
End Sub

Is it not problem if using b4a 7.01 and Android 4.3?
I haven't installed B4A-8.0 yet and I need to use Android 4.3

Sin título.jpg
 

f0raster0

Well-Known Member
Licensed User
Longtime User
thanks, updated B4X to 8.0 now I got this error:
B4A Version: 8.00
Parsing code. (0.02s)
Compiling code. (0.03s)
Compiling layouts code. (0.02s)
Organizing libraries. (0.53s)
Generating R file. Error
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:font
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:fontStyle
ERROR: In <declare-styleable> FontFamilyFont, unable to find attribute android:fontWeight
 
Upvote 0
Top