Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

InterruptedException to Exception change #2909

Open
wants to merge 7 commits into
base: multiple_maps
Choose a base branch
from

Commits on Mar 31, 2020

  1. Ready for v2.7.0

    wf9a5m75 committed Mar 31, 2020
    Configuration menu
    Copy the full SHA
    1e27920 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2020

  1. Configuration menu
    Copy the full SHA
    6ad38c8 View commit details
    Browse the repository at this point in the history
  2. prepare for v2.7.1

    wf9a5m75 committed Apr 9, 2020
    Configuration menu
    Copy the full SHA
    d015687 View commit details
    Browse the repository at this point in the history

Commits on May 22, 2020

  1. Update README.md

    wf9a5m75 authored May 22, 2020
    Configuration menu
    Copy the full SHA
    de0bee2 View commit details
    Browse the repository at this point in the history

Commits on Aug 17, 2020

  1. Prevent crash at onStop

    Probably the bug of the Google Maps SDK for Android v3 beta
    wf9a5m75 authored Aug 17, 2020
    Configuration menu
    Copy the full SHA
    420e907 View commit details
    Browse the repository at this point in the history
  2. Revert

    wf9a5m75 authored Aug 17, 2020
    Configuration menu
    Copy the full SHA
    bdb7af4 View commit details
    Browse the repository at this point in the history

Commits on Jul 13, 2022

  1. InterruptedException to Exception change

    We're observing the enormous number of crashes (coming mostly from Firebase's stack trace) in PluginMarker.java file. The line 167 is generating an Exception that is not being predicted by the Try-Catch where is inserted (lines 149 - 185), which is specifically only catching InterruptedException types. Simply replacing "InterruptedException" with "Exception" will solve the problem, as then the catch will be able to catch all Exception types and avoid the crash.
    michal-szklarski-jmp authored Jul 13, 2022
    Configuration menu
    Copy the full SHA
    fe62d4c View commit details
    Browse the repository at this point in the history