RDLC报表部署时服务器缺少DLL,错误提示: “An error occurred during local report processing. The definition of the report 'Main Report' is invalid. An unexpected error occurred in Report Processing. 未能加载文件或程序集“Microsoft.ReportViewer.ProcessingObjectModel, Version=8.0
Android6.0
The 6
然后在代码里的:
Uri uri = Uri.fromFile(new File(picPath));
更改为:
Uri uri;
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.M){
uri = FileProvider.getUriForFile(context, com.luxiaofeng-你的应用包名 和mainfest声明的一致,newFile(picPath));
inten