Android Suport Libraries Must Use The Exact Same Version
Please, what is wrong in this gradle code and how can I fixed it? I think it is a suport libraries vesion incompatibility problem, but I do not know how to fixed it. Below the com
Solution 1:
You have to override each library with lower version showed in the hint, with the upper version. ( the same as showed in the hint, 27.1.1 in your case)
For example you have in the hint com.android.support:customtabs:26.1.0
:
So in the dependencies block add 'com.android.support:support:customtabs:27.1.1'
with the upper version 27.1.1 instead of 26.1.0 :
implementation 'com.android.support:support-media-compat:27.1.1'
And you repeat this until warnings go, you may have other warnings with other libraries after
Post a Comment for "Android Suport Libraries Must Use The Exact Same Version"