After I added a FireBase to my project this error showed up. someone know how to fix it? thank you!
Asked
Active
Viewed 30 times
0
-
1Try to add `"implementation 'com.android.support:design:27.1.1'"` and see this answer https://stackoverflow.com/a/42374426/9060113. – punchman Dec 05 '18 at 22:20
-
need to add the this implementation 'com.android.support:support-media-compat:$support_version' and check – DKV Dec 06 '18 at 06:46
1 Answers
0
Use same version for design and appcompat. as follows
implementation 'com.android.support:appcompat-v7:26.1.0'
implementation 'com.android.support:design:26.1.0'
here '26.1.0' can be any version you want.
also add google()
in project level build.gradle file, as follows
repositories {
google()
jcenter()
}

Uma Achanta
- 3,669
- 4
- 22
- 49