Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

appcompat-v7:27.1.1 conflicts with firebase-ads:15.0.1

I am working on a new app. Presently I am trying to add dependency

implementation 'com.google.firebase:firebase-ads:15.0.1'

Before insert row #38:

enter image description here

After insert row #38:

enter image description here

Any ideas how to best resolve this issue?

P.S. classpath 'com.google.gms:google-services:4.0.1'

like image 569
Volodymyr T Avatar asked May 31 '18 13:05

Volodymyr T


2 Answers

One of your dependencies is internally using an older support library version. The best solution is to force it to use a newer one, just add this to dependencies:

implementation 'com.android.support:customtabs:27.1.1'
like image 123
Suleyman Avatar answered Sep 19 '22 10:09

Suleyman


You should be able to resolve this by adding:

implementation 'com.android.support:customtabs:27.1.1'

You are receiving this error because the library you added has implemented an older version internally.

There is a similar discussion here

like image 43
Jantzilla Avatar answered Sep 21 '22 10:09

Jantzilla