ShowcaseView icon indicating copy to clipboard operation
ShowcaseView copied to clipboard

OutOfMemeory crash

Open sajadmaster opened this issue 6 years ago • 1 comments

Hi, I've recently implemented showcaseview to our app, Goal Meter, and I love it. However, within the first day we had several crash reports similar to the one mentioned in the post below. https://github.com/amlcurran/ShowcaseView/issues/379

As explained above, the answer is to change: @Override public void hide() { // If the type is set to one-shot, store that it has shot shotStateStore.storeShot(); mEventListener.onShowcaseViewHide(this); fadeOutShowcase(); }

to @Override public void hide() { // If the type is set to one-shot, store that it has shot clearBitmap(); shotStateStore.storeShot(); mEventListener.onShowcaseViewHide(this); fadeOutShowcase(); }

Could you please make this change to this great library?

sajadmaster avatar Sep 21 '17 02:09 sajadmaster