Ali Jzz
Ali Jzz

Reputation: 33

Latest google play services Ads Library conflicting Issues 17.1.2

When I update Gradle google play services Ads Dependency to the latest version 17.1.2

      **implementation 'com.google.android.gms:play-services-ads:17.1.2**'

Conflicting issues found saying: All gms/firebase libraries must use the same version. Examples include implementation 'com.google.android.gms:play-services-ads:17.1.2 and implementation 'com.google.android.gms:play-measurement-base:16.0.5.

Note: I have not even used firebase anywhere in the app and I update the ads dependency from version 15.0.1.

Upvotes: 0

Views: 968

Answers (2)

Mayur Dabhi
Mayur Dabhi

Reputation: 3926

you have to choice first update all google dependency with same version or second one is remain dependency with old version.

Upvotes: 0

flashberry
flashberry

Reputation: 153

Use

implementation 'com.google.android.gms:play-services-ads:16.0.1'
implementation 'com.google.android.gms:play-services-measurement-base:16.0.1'

Hope it helps.

Upvotes: 1

Related Questions