David Vavra
David Vavra
Wow, I didn't know about the hosted app! I just watched an episode of HIMYM on my TV through your app and it was awesome! Good FPS as well. Look:...
Wow, Paparazzi looks interesting. I'm not very happy with Facebook's library. It's not very maintained and it doesn't work for API 28+. If it runs without emulator, it can faster...
I tried to play with Paparazzi in my sample app and when I run the Paparazzi test command, I get this: ``` java.lang.IllegalStateException: No instrumentation registered! Must run under a...
Well, Papparazi has to do it somehow. They support snapshotting Views without instrumentation. They don't support Compose now, but they plan it for v1. But I'm assuming wrapping composables into...
@alexvanyo Great! Can you share some code sample? I would like to play around with it and maybe then publish some article/library for it. I would love to get rid...
Thanks @alexvanyo, I created a full-fledged example including CI integration based on your work: https://github.com/davidvavra/showkase-screenshot-tests And I wrote an article about it: https://proandroiddev.com/no-emulator-needed-for-screenshot-tests-of-compose-previews-on-ci-d292fa0eb26e
Yes we have multiple flavors of the app and the use-case is that there is a flavor for QA environment. But we want to distribute release build so QA people...
I have tried the exact composable from the test in our app (without the workaround): ``` E: FATAL EXCEPTION: main Process: com.jll.mya.dev, PID: 10324 java.lang.IllegalArgumentException: createMdcTheme requires the host context's...
The root cause is that your activity has a theme `Theme.App.NoActionBar` which doesn't inherit from `Theme.MaterialComponents`
@borsini See the workaround I mention in the first post