打开相机的时候报错,WTF?? Android 8.0 小米手机5X
看一下报错的那行。
首先查看BuildConfig导入的包是否正确,应导入项目得BuildConfig,不是V4包的。
再检查AndroidManifest.xml文件的<application>下的<provider>标签是否有 android:name="android.support.v4.content.FileProvider"的provider
我的没有??WTF??添加
注意
files-path代表的根目录: Context.getFilesDir()
external-path代表的根目录: Environment.getExternalStorageDirectory()
cache-path代表的根目录: getCacheDir()
external-files-path 代表的根目录getExternalFilsDir()(用户SDK卡的根目录)
运行,解决。