In gradle is ```google() the same as maven { ur...
# random
c
In gradle is
Copy code
google()

the same as

maven { url '<https://maven.google.com>' }
s
Based on the source code, it actually sets
Copy code
<https://dl.google.com/dl/android/maven2/>
Which says "The URL used to access this repository is "https://dl.google.com/dl/android/maven2/"."
@Sam oh nice! Where did you find that source code? I tried cmd + clicking on it in intellij but no dice.
I guess there is a repo to look at? Sorry. Gradle noob here.
Oh interesting. your URL based on the source ends up 404'ing
hm.
s
I just clicked on it in the IDE but I had to follow it through a couple of interfaces and such
👍 1