I am new to using Android Studio and coding in Java.
I created a Twitter log in button using Fabric and I want to create a new activity to show the user's twitter feed. I need to pass the TwitterSession result variable to make API calls in the other activity, but I don't know which function to use to pass it.
I created a new intent and looked into using putExtra() to pass the variable, but I don't know what to pass it as. Serializable doesn't work when I try to cast it back to a TwitterSession.
What should I use in order to pass this variable?