Didn't find class "androidx.core.content.FileProvider" on path...

这个 bug 跟 AndroidManifest 中的 一块设置有关:

 
     
 

原因查找:

在 app\build.gradle 中少了一个配置——

compileOptions {
	// 1.8 是我的 jdk 版本
    sourceCompatibility = 1.8
    targetCompatibility = 1.8
}

将上面配置代码放到 android{} 中即可~

你可能感兴趣的:(Android,学习笔记)