Skip to content

Commit

Permalink
Added semi-permenant test point
Browse files Browse the repository at this point in the history
- No Error Nominal Response..where the crash used to be
- version code bump
  • Loading branch information
kcw-grunt committed Jan 31, 2023
1 parent 21c0f72 commit e3c8933
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ android {
applicationId = 'com.loafwallet'
minSdkVersion 27
targetSdkVersion 32
versionCode 723
versionCode 724
versionName "v2.8.1"
multiDexEnabled true
archivesBaseName = "${versionName}(${versionCode})"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,10 @@
import com.breadwallet.presenter.interfaces.BRAuthCompletion;
import com.breadwallet.tools.animation.BRAnimator;
import com.breadwallet.tools.animation.DecelerateOvershootInterpolator;
import com.breadwallet.tools.manager.AnalyticsManager;
import com.breadwallet.tools.security.AuthManager;
import com.breadwallet.tools.security.FingerprintUiHelper;
import com.breadwallet.tools.util.BRConstants;
import com.breadwallet.tools.util.Utils;

import timber.log.Timber;
Expand Down Expand Up @@ -235,6 +237,7 @@ public void onAnimationEnd(Animator animation) {
super.onAnimationEnd(animation);
if (getActivity() != null) {
fingerPrintLayout.clearAnimation();
AnalyticsManager.logCustomEvent(BRConstants._20230131_NENR);
}
}
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,7 @@ private BRConstants() {
public static final String _20210804_TAULO = "ternio_API_user_log_out";
public static final String _20210427_HCIEEH = "heartbeat_check_if_event_even_happens";
public static final String _20220822_UTOU = "user_tapped_on_ud";
public static final String _20230131_NENR = "no_error_nominal_response";
///Dev: These events not yet used

@Retention(RetentionPolicy.SOURCE)
Expand Down Expand Up @@ -188,7 +189,8 @@ private BRConstants() {
_20210804_TAULI,
_20210804_TAULO,
_20210427_HCIEEH,
_20220822_UTOU
_20220822_UTOU,
_20230131_NENR
})
public @interface Event {
}
Expand Down

0 comments on commit e3c8933

Please sign in to comment.