Android组件化以及组件化中butterknife报空指针异常

https://github.com/luckybilly/CC  Android组件化开发请看这篇文章

关于butterknife空指针,请在module中引入

apply plugin: 'com.jakewharton.butterknife'

annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
compile 'com.jakewharton:butterknife:8.4.0'

相对应的主app中也需要

annotationProcessor 'com.jakewharton:butterknife-compiler:8.4.0'
compile 'com.jakewharton:butterknife:8.4.0'

,如果module中引入R文件,记得R用R2替换

至此就OK了

你可能感兴趣的:(android,组件化)