如题
目前遇到的问题是 使用了SkiaSharp库,需要在Linux中有对应的so文件
发布应用后,在runtime文件中有对应的文件
我的问题是如何让runtime也同样出现在发布文件中,免去每次发布不同项目都需要手动去复制文件进去
相关问题
- Is shmid returned by shmget() unique across proces
- how to get running process information in java?
- Error building gcc 4.8.3 from source: libstdc++.so
- Why should we check WIFEXITED after wait in order
- Null-terminated string, opening file for reading
主要是为了解决SkiaSharp在Linux下缺少库造成的功能缺失的问题
引入了SkiaSharp.NativeAssets.Linux后问题解决 , 在发布目录包含了应用的so文件即可
https://www.cnblogs.com/wxb8/p/12566429.html
不能知道能否解决你的问题