Hi,
I've released a iOS app and I would like to upload a Android version.
In order to do that, I've created two compiler constants: CONFIG::ANDROID and CONFIG::IOS.
I'm having problems when I try to choose which ANE import in a class. Basically, the import does not work if it's inside a if.
In the code sample mobile.LIB is loaded but com.myane is not when CONFIG::IOS is set to true
CONFIG::IOS
{
import com.myane.*;
import mobile.LIB;
}
If I remove the first line of the code everything works fine.
Does anybody know if there is a issue with ANE and compile constants in Adobe Air?
thanks!