Conversation

Replying to and
The funny part about it is that Android SDK/NDK build system isn't what's used by Android itself. Android itself is busy replacing a far superior build system to the one they make app developers use with a better one, after previously going through a past replacement like that.
2
1
Replying to and
Whenever I ask why a particular weird piece of Google tooling is the way it is, the answer seems to be "well internally they use Blaze, but that's internal, so they made an external OSS tool which implements a subset of Blaze. ... another one"
1
1
Replying to and
gradle isn't the kind of thing they'd build though. They just made a plugin for it. The Android build system itself may not be as wonderful as Bazel would have been but it's actually the nicest build system that I've used overall. gradle could actually be the worst.
2
1
Replying to and
Yeah, it's some horrifying thing from the Java ecosystem that basically seems to have been made with the goal of being way faster than Maven (which is horrible) at the expense of being way more complex and confusing.
1
The problem with gradle basically seems to be that the only build system the people who made it have ever used is Maven and the goal was making something faster than Maven. I don't think Java programmers actually realize how ridiculously awful this stuff is to use.
1
2
Replying to and
I like writing low-level code but basically if you had to make me choose between writing everything else in Java, Go or Python then I would probably actually choose Java as the least painful one for doing anything non-trivial. Of course, I'd prefer a nice language than that.