Open
Description
Is your feature request related to a problem? Please describe.
I noticed that you're using Butterknife but there is still some "findViewById" usage here and there, sometimes on classes that already use ButterKnife.
Example from the "CurrencyListViewActivity" class :
@BindView(R.id.listView)
RecyclerView mListview;
[...]
mListview = findViewById(R.id.listView);
Describe the solution you'd like
Take some time to tidy up those classes.
Activity