Hello sorry for my poor English.I am developing java library for ANE(Air Native Extension). I call third-party jar file and I set callback within there. When my callback is called this error occurs. Please give me advice.
I got an error while debugging by using DDMS.
03-19 18:10:22.615: E/Adreno200-EGL(7094): <qeglDrvAPI_eglCreateWindowSurface:947>: EGL_BAD_ATTRIBUTE
03-19 18:10:23.375: E/InputDispatcher(320): channel '41cd1680 air.air.ANEDebug/air.air.ANEDebug.AppEntry (server)' ~ Channel is unrecoverably broken and will be disposed!
public class FRETest implements FREFunction {
public FREObject call(FREContext arg0, FREObject[] arg1) {
ThirdPartyClient tpc = new ThirdPartyClient(); <= success
tpc.authorizeLicense(tpcCallback); <= success
}
public ThirdPartyClientCallback tpcCallback = new ThirdPartyClientCallback() { <= fail
public void onAuthorizeResult() {
}
}
}