Problem [Unable to find bundled java]
When running flutter doctor in Mac Terminal, it responds with unable to find bundled java message on Android toolchain.
Solution 1
$ cd /Applications/Android\ Studio.app/Contents
$ ln -s jbr jre
Solution 2 [ln: jre: operation not permitted]
If Solution 1 returns an error message of ln: jre: operation not permitted , try…
1.
open system settings
2.
move to Privacy & Security
3.
move to Full Disk Access
4.
click + and add Applications/Utilities/Terminal
5.
then turn on the switch
6.
open the Terminal again and try
a.
$ cd /Applications/Android\ Studio.app/Contents
b.
$ ln -s jbr jre

