iOS Question Compile & rapid issue

ibra939

Active Member
Licensed User
Longtime User
when i want test my app show this issues

B4i Version: 8.90
Parsing code. (0.00s)
Building folders structure. (0.02s)
Compiling code. (0.00s)
Compiling layouts code. (0.00s)
Compiling debugger engine code. Error
shell\src\com\altoki\test\b4i_main.java:33: error: constructor RDebug in class RDebug cannot be applied to given types;
new RDebug(args[0], Integer.parseInt(args[1]), Integer.parseInt(args[2]), Integer.parseInt(args[3]));
^
required: String,int,int
found: String,int,int,int
reason: actual and formal argument lists differ in length
1 error
only showing the first 1 errors, of 25 total; use -Xmaxerrs if you would like to see more

javac 14.0.1
 
Solution
There is probably a mismatch between the IDE version and the local builder libraries. Best to delete the builder and download the latest one.

hatzisn

Expert
Licensed User
Longtime User
What is rDebug?
 
Upvote 0

hatzisn

Expert
Licensed User
Longtime User
Second question: are you using the correct XCode and Local Builder?
 
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
Does it happen with a specific app? Create a new project and run it. Does it work?

Can you upload the project?
Any project even new is happening same issues
 
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
Ok I will do it , I wish solve the issue
 
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
There is probably a mismatch between the IDE version and the local builder libraries. Best to delete the builder and download the latest one.
B4i Version: 8.90
Parsing code. (0.00s)
Building folders structure. (0.03s)
Compiling code. (0.03s)
Compiling layouts code. (0.03s)
Compiling debugger engine code. Error
shell\src\com\altoki\test\b4i_main.java:33: error: constructor RDebug in class RDebug cannot be applied to given types;
new RDebug(args[0], Integer.parseInt(args[1]), Integer.parseInt(args[2]), Integer.parseInt(args[3]));
^
required: String,int,int
found: String,int,int,int
reason: actual and formal argument lists differ in length
1 error
only showing the first 1 errors, of 30 total; use -Xmaxerrs if you would like to see more

javac 14.0.1




new project:
B4i Version: 8.90
Parsing code.    (0.05s)
Building folders structure.    (0.03s)
Running custom action.    (0.05s)
Compiling code.    (0.09s)
Compiling layouts code.    (0.00s)
Compiling debugger engine code.    Error
shell\src\com\altoki\testme\b4i_b4xbitset.java:11: error: constructor PCBA in class PCBA cannot be applied to given types;
    public static PCBA staticBA = new PCBA(null, b4i_b4xbitset.class);
                                  ^
  required: Object,Class<?>,RemoteObject
  found:    <null>,Class<b4i_b4xbitset>
  reason: actual and formal argument lists differ in length
1 error
only showing the first 1 errors, of 1137 total; use -Xmaxerrs if you would like to see more

javac 14.0.1



Same problem
 
Upvote 0

ibra939

Active Member
Licensed User
Longtime User
solve reinstall b4i
 
Upvote 0
Top