I have recently updated both Java and the Android SDK.
I wrote a VERY simple 1 button example program and compiled it. The below is the error I receive.
I'm lost as to what I need to do next.
Thanks,
Rusty
B4A version: 5.02 (1)
Parsing code. (0.00s)
Compiling code. (0.02s)
Compiling layouts code. (0.00s)
Generating R file. (0.06s)
Compiling debugger engine code. (0.63s)
Compiling generated Java code. Error
javac 1.8.0_51
src\b4a\example\designerscripts\LS_layout1.java:9: error: cannot find symbol
public static void LS_general(java.util.LinkedHashMap<String, anywheresoftware.b4a.keywords.LayoutBuilder.ViewWrapperAndAnchor> views, int width, int height, float scale) {
^
symbol: class ViewWrapperAndAnchor
location: class LayoutBuilder
1 error
Sub Process_Globals
End Sub
Sub Globals
Private Button1 As Button
End Sub
Sub Activity_Create(FirstTime As Boolean)
Activity.LoadLayout("Layout1")
End Sub
Sub Activity_Resume
End Sub
Sub Activity_Pause (UserClosed As Boolean)
End Sub
Sub Button1_Click
End Sub