动态权限依赖问题
来源:14-8 一键式相机,图片处理剪裁和动态权限封装-3

闫世豪
2018-05-16
Annotation processors must be explicitly declared now. The following dependencies on the compile classpath are found to contain annotation processor. Please add them to the annotationProcessor configuration.
- permissionsdispatcher-processor-2.4.0.jar (com.github.hotchemi.permissionsdispatcher:permissionsdispatcher-processor:2.4.0)
Alternatively, set android.defaultConfig.javaCompileOptions.annotationProcessorOptions.includeCompileClasspath = true to continue with previous behavior. Note that this option is deprecated and will be removed in the future.
See https://developer.android.com/r/tools/annotation-processor-error-message.html for more details.
I add " javaCompileOptions {
annotationProcessorOptions {
// arguments = [ moduleName : project.getName() ]
includeCompileClasspath true
}
}
添加上面代码,无效
2回答
-
闫世豪
提问者
2018-05-17
如何rebulid 之后解决
00 -
傅猿猿
2018-05-17
不用加这些东西啊,动态权限是在ec中使用的,那么就需要把Processor在ec的依赖里添上,并且还得以api或者compile的形式把JAVA依赖加上,然后rebuild就好了,群文件里有文件,你对照下
012018-05-17
相似问题