The ANE library is compiled to MacOS, but does not compile on Windows.
ANE lbrary FPHockeyApp http://flashpress.ru/blog/contents/ane/hockeyapp/FPHockeyApp-6.1.ane
Application:
package
{
import flash.display.Sprite;
import ru.flashpress.hockeyapp.FPHockeyApp;
import ru.flashpress.hockeyapp.ns.haIOS;
public class TestHockeyApp extends Sprite
{
public function TestHockeyApp()
{
super();
use namespace haIOS;
//
var APP_ID:String = 'you app id';
FPHockeyApp.manager.configureWithIdentifier(APP_ID);
FPHockeyApp.manager.startManager();
FPHockeyApp.manager.authenticator.authenticateInstallation();
}
}
}
Compiled in MacOS, but does not compile on Windows:

Why so?
