Hello,
For an Android native library project, I would like to copy the resulting .so from the folder in which it is built to another location on my Windows PC. I use CustomActions–> “After NDK build”, then in Command, I can do a “cp” command. However, I don’t know how to get a relative directory path, from somewhere in my project. For example, the folder where the Visual Studio solution file is, or some other folder. I want to avoid requiring NEW environment variables if necessary.
Is there a way I can do <some relative magic>/……./arm64-v8a/lib/mylib.so <some relative magic>/……./<my custom folder location> ??
I don’t want to use absolute paths, because someone else may have the project set up in some other location on their PC.
Thank you.