systers / FirstAide-Android

FirstAide is a application to help the Peace Corps Volunteers who are victims of sexual harassment.
23 stars 104 forks source link

BroadcastReceiver unregistered without registering in MainActivity #437

Open abs51295 opened 7 years ago

abs51295 commented 7 years ago

BroadcastReceiver of CircleOfTrustFragment is registered in OnResume() of MainActivity as found here. But the receiver will not be registered as it is not initialized (it is initialized in onCreateView() of the CircleOfTrustFragment) and when trying to unregister it in OnPause() throws error in Logcat.

I think it's better to register and unregister the receiver in the lifecycle methods of CircleOfTrustFragment itself.

abs51295 commented 7 years ago

@sandarumk What's your say in this?