I normally develop for Android on a windows laptop but now I also want to develop on my new Mac OS (But I also want to continue doing so on my old windows), I'm followig the official guide to set up my enviroment on the mac.
I fear that I will be having problems switching between my windows and mac laptops.
For example, in my gradle properties I have this line which informs gradle to use jdk 11.0.4:
org.gradle.java.home=C:\\Program Files\\Java\\jdk-11.0.14
My mac doesn't have this route, so will I have any problems?
On the official setup guide they install java like this:
brew tap homebrew/cask-versions
brew install --cask zulu11
What if this installs another version of jdk, like 11.1.5 or something like that, will I have a problems, and how could I fix them?
Thanks in advance and sorry for newb question, I'm new to Mac OS.