Posts

Showing posts with the label google-api

Android Studio Gradle Sync Error “The library com.google.android.gms:play-services-base is being requested by various other libraries”

Android Studio Gradle Sync Error “The library com.google.android.gms:play-services-base is being requested by various other libraries” I have updated all the firebase and google gms dependencies and still am getting this error, I don't know what's wrong? Error-The library com.google.android.gms:play-services-base is being requested by various other libraries at [[11.0.1,11.0.1], [15.0.1,16.0.0), [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies. Code: app/build apply plugin: 'com.android.application' android { compileSdkVersion 27 defaultConfig { applicationId "com.example.project" minSdkVersion 21 targetSdkVersion 27 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" useLibrary 'org.apache.http.legacy' } buildTypes { rele...