Я работаю над существующим приложением, которое имеет более старые зависимости.Это мой app / build.gradle
implementation "com.google.android.gms:play-services-base:12.0.1"
implementation "com.google.firebase:firebase-core:12.0.1"
implementation "com.google.firebase:firebase-analytics:12.0.1"
implementation "com.google.firebase:firebase-messaging:12.0.1"
implementation 'me.leolin:ShortcutBadger:1.1.21@aar'
implementation 'com.google.android.gms:play-services-maps:12.0.1'
implementation 'com.applovin:applovin-sdk:+'
Теперь я хочу добавить гугл-добавления, отсюда я и последовал - https://www.npmjs.com/package/react-native-admob
Но после установки я былне удалось синхронизировать приложение.Поэтому я обновил зависимости до последних версий.
implementation "com.google.android.gms:play-services-base:16.1.0"
implementation "com.google.firebase:firebase-core:16.0.9"
implementation "com.google.firebase:firebase-analytics:16.5.0"
implementation "com.google.firebase:firebase-messaging:18.0.0"
implementation 'me.leolin:ShortcutBadger:1.1.21@aar'
implementation 'com.google.android.gms:play-services-maps:16.1.0'
implementation 'com.applovin:applovin-sdk:+'
Даже после этого я получаю сообщение об ошибке как
Gradle sync failed: The library com.google.android.gms:play-services-measurement-sdk-api is being requested by various other libraries at [[16.5.0,16.5.0]], but resolves to 16.3.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
Пожалуйста, дайте мне знать, что нужно исправить.
Спасибо.