Hey, I'm recently started to use Mavericks mocking system, but some views are showing differently from regular app flow, I assume thats because difference in theme?
But that didn't work, specifically the ripple effects on buttons missing, the stroke color is not applied.
I'm launching it via adb adb shell am start -n mypackage/com.airbnb.mvrx.launcher.MavericksLauncherActivity
It seems I see changes because Button is not replaced with MaterialButton version and only reason for that I see is that activity is not using Theme.MaterialComponents.* theme or am I missing something?
I assume the views are not replaced by their AppCompact or Material version is because launcher activity is FragmentActivity and not AppCompactActivity
Hey, I'm recently started to use Mavericks mocking system, but some views are showing differently from regular app flow, I assume thats because difference in theme?
I've tried to set it via
But that didn't work, specifically the ripple effects on buttons missing, the stroke color is not applied.
I'm launching it via adb
adb shell am start -n mypackage/com.airbnb.mvrx.launcher.MavericksLauncherActivity
It seems I see changes because
Button
is not replaced withMaterialButton
version and only reason for that I see is that activity is not usingTheme.MaterialComponents.*
theme or am I missing something?