top | item 46483424

(no title)

shelled | 1 month ago

And Gradle? Does skip the Gradle and that nightmare of a dependency management and handling?

discuss

order

mavamaarten|1 month ago

I'm totally biased towards Android development using Gradle and kotlin.

Gradle can be a pain, but if I look at what our neighbors at the iOS team experience (constantly having to manually merge project files, not being able to simply import some libraries, ...) it's hardly a nightmare.

Specifically adding dependencies is super easy? Just specify which repo they're in (mavenCentral or Google or whatever) and add dependencies under "dependencies". When running or syncing, Gradle does the rest.

mihael|1 month ago

Yes, exactly. SwifDroid automatically wires all the necessary Gradle dependencies, so you don’t have to manage them manually.

nicoburns|1 month ago

Does it still ultimately call into gradle to perform the build?