Compare commits

..

3 Commits

Author SHA1 Message Date
Cameron Gutman 5beffed9b9 Update version to 2.5.0.3 2014-07-12 16:19:22 -07:00
Cameron Gutman 532ec6f8f3 Update common 2014-07-12 16:16:35 -07:00
Cameron Gutman a46fb7ba36 Fix small race potential 2014-07-12 16:16:18 -07:00
3 changed files with 5 additions and 4 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.limelight"
android:versionCode="22"
android:versionName="2.5.0.2" >
android:versionCode="23"
android:versionName="2.5.0.3" >
<uses-sdk
android:minSdkVersion="16"
Binary file not shown.
@@ -48,12 +48,13 @@ public class ComputerManagerService extends Service {
private ServiceConnection discoveryServiceConnection = new ServiceConnection() {
public void onServiceConnected(ComponentName className, IBinder binder) {
synchronized (discoveryServiceConnection) {
discoveryBinder = ((DiscoveryService.DiscoveryBinder)binder);
DiscoveryService.DiscoveryBinder privateBinder = ((DiscoveryService.DiscoveryBinder)binder);
// Set us as the event listener
discoveryBinder.setListener(createDiscoveryListener());
privateBinder.setListener(createDiscoveryListener());
// Signal a possible waiter that we're all setup
discoveryBinder = privateBinder;
discoveryServiceConnection.notifyAll();
}
}