Tad Fisher

Results 110 comments of Tad Fisher

The configuration cache has to be enabled, with `--configuration-cache` or `org.gradle.unsafe.configuration-cache=true`. I also noticed we have `enableFeaturePreview("STABLE_CONFIGURATION_CACHE")` in our settings script, which might make the cache more strict in the...

~~I think this is from #751, but hovering over any window element that causes the mouse cursor to change results in a constant 2Hz flickering between the changed cursor and...

@ChubbyAnt ping ^

https://www.javadoc.io/doc/com.jakewharton.rxbinding2/rxbinding/2.0.0 for reference

You need `configurations.runtime` instead, as it extends from both `compile` and `implementation`.

Can you try it with this change? ```nix { config, pkgs, ... }: let android-sdk = let android-nixpkgs = fetchTarball "https://github.com/tadfisher/android-nixpkgs/archive/main.tar.gz"; in import (android-nixpkgs + "/hm-module.nix"); in { imports =...

Ah, you need the overlay installed, which isn't exposed outside of the flake. I'll try and make this possible, or avoid requiring an overlay.

I suspect just putting `icu.dev` in `buildInputs` is not going to work, because the NDK's cmake isn't wrapped with all the Nix machinery which adds that dependency automatically (see [here](https://github.com/NixOS/nixpkgs/blob/master/pkgs/development/tools/build-managers/cmake/setup-hook.sh))....

Yes, I personally use this for an isolated Android dev environment via flakes. I used to use this via home-manager as well, but it makes less sense to do so...