Closing the app might lead to a crash due to an IllegalArgumentException
This commit is contained in:
parent
f8c36e2266
commit
b6a2d5f508
|
@ -193,7 +193,13 @@ public class PaymentsManager {
|
|||
|
||||
public void destroy() {
|
||||
if (mService != null) {
|
||||
activity.unbindService(mServiceConn);
|
||||
try {
|
||||
activity.unbindService(mServiceConn);
|
||||
} catch (IllegalArgumentException e) {
|
||||
// Somehow we've already been unbound. This is a non-fatal
|
||||
// error.
|
||||
Log.e(TAG, "Unable to unbind from payment service (already unbound)");
|
||||
}
|
||||
}
|
||||
|
||||
mSetupDone = false;
|
||||
|
|
Loading…
Reference in New Issue