Ghedeon

Results 7 comments of Ghedeon

Same here, can confirm

Any progress on this? Seems to be reproducible on `#AI-181.5540.7.32.5056338` https://issuetracker.google.com/issues/120157997

Any workarounds how to handle this in `DeepLinkDispatch` in case the old app was already supporting `app://` and it's not possible to change it at the moment?

This seems to be working: ``` @JvmStatic @DeepLink("www.foo.com/home") fun messagesIntent(context: Context, extras: Bundle): Intent { extras.putString(DeepLink.URI, "app://home") return homeIntent(context) } ``` Is that ok to override `DeepLink.URI` like this?

@ligi I just realized that it's more generic than Dropbox. In fact, the pass is not getting opened via any of my file managers. I've tried with FX and ES...

Looks like same issue is already reported for the official Camera2Basic sample app: https://github.com/googlesamples/android-Camera2Basic/issues/33

@TimvdLippe Totally understand your point, but what is the name attribute for if not for this? It's literally documented as expected behavior for `@InjectMocks`. It's a canonical example from @InjectMocks...