I do have a MessageRVAdapter in my project directory but I don't know why my app isn't finding this class. I get the following problem in MainActivity.java within app\src\main\java\com\example\chatbot:
cannot find symbol
private MessageRVAdapter messageRVAdapter;
^
symbol: class MessageRVAdapter
location: class MainActivity
Here is my code:
// creating a variable for array list and adapter class.
private ArrayList<com.example.chatbot.MessageModal> messageModalArrayList;
private MessageRVAdapter messageRVAdapter;
Here is what my directory looks like