1 min readJun 5, 2016
I found that Android Studio report “Cannot find Symbol Henson” in the code
b.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = Henson.with(MainActivity.this)
.gotoSample()
.mString("hello")
.build();
startActivity(intent);
}
});
This error is a false positive. Is there a way to eliminate it?
Otherwise, it’s a great library. Thank you.