How do you pass multiple friendPaths, what is the ...
# compiler
h
How do you pass multiple friendPaths, what is the separator?
-Xfriend-paths=/Users/philipwedemann/Downloads/friendPath/lib/build/libs/lib.jar:/Users/philipwedemann/Downloads/friendPath/lib2/build/libs/lib2.jar
I did try
:
and
, but both does not work. Or do I need to pass the argument multiple times?
u
,
You can also pass the argument multiple times.
h
Thank you, that was too easy. I looked at the sources in the compiler/gradle plugin, which often uses File.pathSeparator. But passing the argument multiple times is perfect.