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-1918:10:22.615: E/Adreno200-EGL(7094):<qeglDrvAPI_eglCreateWindowSurface:947>: EGL_BAD_ATTRIBUTE
03-1918:10:23.375: E/InputDispatcher(320): channel '41cd1680 air.air.ANEDebug/air.air.ANEDebug.AppEntry (server)'~Channel is unrecoverably broken and will be disposed!
publicclassFRETestimplementsFREFunction{
publicFREObject call(FREContext arg0,FREObject[] arg1){
ThirdPartyClient tpc =newThirdPartyClient();<= success
tpc.authorizeLicense(tpcCallback);<= success
}
publicThirdPartyClientCallback tpcCallback =newThirdPartyClientCallback(){ <= fail
publicvoid onAuthorizeResult(){
}
}
}