JohnCody wrote : "Accordingly, since there is a 99% chance that any user of B4i will also be developing the SAME app in B4A, please make it a priority so that we can shareALL the code files between the two environments AS-IS."
"Pragma" or "compiler directive" can be used to check the environment which the application is running. This way programmer can code the differences between OSs.
"Pragma" or "compiler directive" can be used to check the environment which the application is running. This way programmer can code the differences between OSs.
B4X:
#if $ANDROID then
do this way
#elseif $IOS then
do that way
#end if