Amc rewards ay (#4764)

* rewards dialog

* redirect user to kyc init source page

* redirect user to kyc init source page for EMF users

* complete journey of amc rewards

* added events

* added the lottie file

* added the events in the email select

* [PS] fix compile error

* made scrollable in the bank screen

* fix null

* fixed issues of rewards

* reverting the pooling changes

* remove hardcode strings and added safety

* amc unlocked enum added

Co-authored-by: Prakhar Saxena <prakhar.saxena@navi.com>
Co-authored-by: Shankar Yadav <shankar.yadav@navi.com>
This commit is contained in:
Ashutosh Y
2022-12-27 17:06:19 +05:30
committed by GitHub Enterprise
parent 05fe03402d
commit 8723ea1575
2 changed files with 3 additions and 2 deletions

View File

@@ -159,7 +159,7 @@ class RewardsDetailFragment :
)
binding.flBottomView.addView(rewardsLockDetailsBottomSheetView)
}
RewardBottomSheetType.PL_UNLOCKED.name -> {
RewardBottomSheetType.PL_UNLOCKED.name, RewardBottomSheetType.AMC_UNLOCKED.name -> {
val rewardsPLUnlockDetailsBottomSheetView =
RewardsPLUnlockDetailsBottomSheetView(requireContext())
rewardsPLUnlockDetailsBottomSheetView.setProperties(

View File

@@ -10,5 +10,6 @@ package com.navi.common.model
enum class RewardBottomSheetType {
LOCKED,
UNLOCKED,
PL_UNLOCKED
PL_UNLOCKED,
AMC_UNLOCKED
}