Ruben

Results 2 issues of Ruben

**Describe the bug** If I call subscriber.subscribeToAudio(false) the 'audioActive' property of subscriber stream is set to false. But if the subscriber from his side call publishAudio(true) then the property is...

bug

Link: https://codelabs.developers.google.com/codelabs/hello-beacons/index.html?index=..%2F..%2Findex#6 . In onSaveInstanceState() the super.onSaveInstanceState(outState); must be called for last. The correct code is: ``` @Override protected void onSaveInstanceState(Bundle outState) { outState.putBoolean(KEY_SUBSCRIBED, mSubscribed); super.onSaveInstanceState(outState); } ```