Andrew Lord

Results 58 comments of Andrew Lord

This will be because the shadow is performed by Android on Lollipop using elevation, but with an image file on the FAB for pre-Lollipop. This could be fixed, by having...

#80 refers to the same request and there is more discussion there.

I tried putting: ``` paperwork { set = [ someKey = "some value" ] } ``` Inside the debug block and then again in the release block to have a...

Okay thanks, interesting idea. Will try that out when I get a chance. On 29 Jan 2017 15:07, "Zsolt Kocsi" wrote: > @andrewlord1990 I think what you want > to...

You can just add to the AndroidManifest to remove the 'AD_ID' permission and then also tell the Firebase Analytics SDK not to collect it. The documentation for the class included...

From the @DeepLink / @DeepLinks annotation you know the scheme and the URL. You could use that to generate an intent filter data attribute with android:scheme="{scheme from URL in annotation}"...

We use retrained fragments quite a lot as "State fragments". You have a fragment with no UI that is attached to your activity to store complicated state in it. This...

We use deep links for a custom scheme without a host, just a scheme and a filepath. E.g. custom-scheme://basket custom-scheme://hotel/1234 custom-scheme://item?itemId=65 In this situation, the links are never used outside...

@jmfayard Personally, I think this is a bit of a step-back from what was already there. It was using the new Gradle built-in approach for managing dependencies and their versions....

@jmfayard > I don't think it's a step back: Gradle does not have a built-in way to lookup for available updates and I think refreshVersions is very valuable there. 100%...