after calling:
result=bindService(new Intent(IUdpListenerService.class.getName()),
serviceConnection, Context.BIND_AUTO_CREATE);
byt debugger: result return 'true'
the onServiceConnected isn't being called.
*ill mention that the remote service is installed in diffrent apk, and is being started by the command startService(..)
Okie.. this is new thing i just found out: onServiceConnected is being triggerd, but it takes time, so what happens here.. that when i use the instance of my interface - it's still remine null, before onServiceConnected manage to be triggerd.. is that possible? –