Florian Dreier

Results 56 comments of Florian Dreier

https://medium.com/@bherbst/fragment-transitions-with-shared-elements-7c7d71d31cbb#.qf0nu485u

PR #130 fixes the inadvertently deletion of your data when you try to import some file that is not a backup. Additionally the app now creates a backup before importing/replacing...

I would also love to have this integrated into the plugin. Our use-case is that we have a lot of modules. We want to see the summary of passed/skipped tests...

I just had the same issue. I was able to resolve it using this matcher: ``` onView(allOf(withParent(withId(R.id.fab)), withClassName(endsWith("ImageView")), isDisplayed())) .perform(click()); ``` The Problem is that the `FloatingActionMenu` is a ViewGroup...

I have constructed a minimal example here: https://github.com/DreierF/closure-webpack-plugin/commit/f0e92ab29658735500770e901575e9f10dfc54c0 It seems to happen as soon as an npm library is imported and the vendors chunk is created.

@ChadKillingsworth Thanks for your response! This unfortunately does not seem to work ATM. I created a minimal example project here that reproduces the crash: https://github.com/DreierF/closure-webpack-plugin/pull/1 ~~The problem seems to be...

I created a fork of this library since the author seems to no longer maintain it and published an AndroidX compatible version to maven central: https://github.com/DreierF/material-intro-screen

Not sure what you mean with "typescript with interface or type". Also I don't see why the Typescript preset should be necessary as esbuild can transpile ts way faster then...

Thanks! I got you now. I'm aware that `type` and `interface` are keywords in Typescript, but I thought ESBuild would strip them away during the transpilation to JS. The thing...