Hi Erel,
If I have an application in the B4A I can pass B4i
Thank you
If I have an application in the B4A I can pass B4i
Thank you
#If B4A
'b4a specific code
#End If
#If B4i
'b4i specific code
#End If
If IsDevTool("B4i") Then Log("b4i")
Note that you can also use conditional compilation directives to share the exact same modules:
B4X:#If B4A 'b4a specific code #End If #If B4i 'b4i specific code #End If
There is also a new keyword in B4i named IsDevTool:
This keyword will be added to B4A and B4J as well. It is useful when the code is compatible between all platforms.B4X:If IsDevTool("B4i") Then Log("b4i")