Skip to content

Commit

Permalink
signed app, bug in sample application fixed
Browse files Browse the repository at this point in the history
- signed the bluetooth emulator app (no need to sign it anymore
- the sample application had a bug (looked for serializable instead of parcelable)
  • Loading branch information
Francesco Zanitti authored and Francesco Zanitti committed Apr 9, 2010
1 parent 2bf504c commit ac44dd6
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file modified android-btsim-application/dist/BluetoothEmulator.apk
Binary file not shown.
Expand Up @@ -34,7 +34,7 @@ public class Main extends Activity {
public void onReceive(Context context, Intent intent) {
String action = intent.getAction();
if(BluetoothDevice.ACTION_FOUND.equals(action)) {
addDevice( (BluetoothDevice)intent.getSerializableExtra(BluetoothDevice.EXTRA_DEVICE) );
addDevice( (BluetoothDevice)intent.getParcelableExtra(BluetoothDevice.EXTRA_DEVICE) );
}
}
};
Expand Down

0 comments on commit ac44dd6

Please sign in to comment.