I create a new empty project in android studio 3.1.
I bring up the Firebase Assistant and select Firebase Cloud Messaging.
I connect this new project to my Firebase Project.
I complete the process to add FCM to my app.
I build the project.
It has errors. It doesn't like . . .
implementation 'com.android.support:appcompat-v7:27.1.1'
in the dependencies section of my build.gradle. The reason is because it found
+--- com.android.support:support-media-compat:25.2.0@aar
in the machine generated androidDependencies section. It says that "All com.android.support libraries must use the exact same version.
I haven't even added a line of code to this project - it was born with this error. What is the fix for this?