You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 24, 2018. It is now read-only.
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. #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?
The text was updated successfully, but these errors were encountered:
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.
#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?
The text was updated successfully, but these errors were encountered: