apps-android-commons
apps-android-commons copied to clipboard
4664: Moved CustomSelectorActivity to ViewBinding
Fixes #4664
What changes did you make and why?
-
Issue: As per the information provided and work request on the ticket above,
CustomSelectorActivity.kt
is currently using Kotlin Synthetic which creates auto-generated class, and has been alread deprecated. -
Solution: Hence migration was done by replacing
kotlin-synthetic
withviewbinding
, which is always null safe, type-safe and supports both Java and Kotlin.
NB: During migration unnecessary id
s of included layouts were removed from activity_custom_selector.xml
which was showing error before the fix.
@dbrant Requesting to review this PR