Joe

Results 26 comments of Joe

The [MeetMe/font-compat](https://github.com/MeetMe/font-compat) project does this automatically on Lollipop+. And there's a workaround that works for KitKat and earlier, with some style tweaks.

Complicated because of the way the families are parsed? It mirrors the way that the Android platform configures font families, which means if/when Android ever exposes that capability, it will...

It looks like the library suite is also accessible on [Jitpack](https://jitpack.io): ``` implementation "com.github.MarioAriasC.funKTionale:functionale-option:1.2" ```

I have a library project that's ~150 modules, and while it's in development we use SNAPSHOT versions. When a host application is using a snapshot version of those modules, the...

We do run the plugin on the root project, but in the context of an application that's consuming these snapshots, it would still have to do those lookups for every...

A couple things: our rejectVersionIf implementation is probably old, but what we use is: ``` dependencyUpdates { checkConstraints = true rejectVersionIf { selection -> ['alpha', 'beta', 'rc', 'cr', 'm'].any {...

> Do you think that check is interfering with the task? No, sorry, I didn't explain that clearly. The check is not Gradle related. It's just a :dependencies report and...

It's a self-hosted artifactory server in the same subnet (AWS vpc) as the build servers, not jfrog.io cloud hosted artifactory.

I've confirmed that the problem of searching older versions of the snapshot is due to the `-Drevision=release` selection: ``` Selection of com.mycompany:platform:5.4.0-SNAPSHOT rejected by component selection rule: Component status integration...

We're also seeing another StackOverflowError in plugin version 4.3.13, with a different stack trace (but potentially similar root cause). It may not be directly related, but in this case there...