Gradle sync fails: com.google.android.gms:play-services-basement and com.google.firebase:firebase-common
up vote
1
down vote
favorite
I am trying to include firebase to my android project as described in the official firebase documenation. The app is very basic and uses Google's vision APIs.
Error that I'm getting:
Gradle sync failed: Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
I've already tried a few solutions from similar questions posted on the site which didn't work for me. More importantly, I'd like to understand the root cause, rather than blindly tinkering with versions.
Below are my gradle files:
Module level
apply plugin: 'com.android.application'
/* ... */
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:2.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services:11.0.4'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
Project level
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Running ./gradlew app:dependencies
gives:
Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
The library com.google.firebase:firebase-common is being requested by various other libraries at [[11.0.4,11.0.4]], but resolves to 16.0.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
android firebase firebase-realtime-database android-gradle
add a comment |
up vote
1
down vote
favorite
I am trying to include firebase to my android project as described in the official firebase documenation. The app is very basic and uses Google's vision APIs.
Error that I'm getting:
Gradle sync failed: Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
I've already tried a few solutions from similar questions posted on the site which didn't work for me. More importantly, I'd like to understand the root cause, rather than blindly tinkering with versions.
Below are my gradle files:
Module level
apply plugin: 'com.android.application'
/* ... */
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:2.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services:11.0.4'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
Project level
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Running ./gradlew app:dependencies
gives:
Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
The library com.google.firebase:firebase-common is being requested by various other libraries at [[11.0.4,11.0.4]], but resolves to 16.0.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
android firebase firebase-realtime-database android-gradle
add a comment |
up vote
1
down vote
favorite
up vote
1
down vote
favorite
I am trying to include firebase to my android project as described in the official firebase documenation. The app is very basic and uses Google's vision APIs.
Error that I'm getting:
Gradle sync failed: Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
I've already tried a few solutions from similar questions posted on the site which didn't work for me. More importantly, I'd like to understand the root cause, rather than blindly tinkering with versions.
Below are my gradle files:
Module level
apply plugin: 'com.android.application'
/* ... */
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:2.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services:11.0.4'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
Project level
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Running ./gradlew app:dependencies
gives:
Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
The library com.google.firebase:firebase-common is being requested by various other libraries at [[11.0.4,11.0.4]], but resolves to 16.0.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
android firebase firebase-realtime-database android-gradle
I am trying to include firebase to my android project as described in the official firebase documenation. The app is very basic and uses Google's vision APIs.
Error that I'm getting:
Gradle sync failed: Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
I've already tried a few solutions from similar questions posted on the site which didn't work for me. More importantly, I'd like to understand the root cause, rather than blindly tinkering with versions.
Below are my gradle files:
Module level
apply plugin: 'com.android.application'
/* ... */
dependencies {
implementation fileTree(include: ['*.jar'], dir: 'libs')
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:2.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.android.gms:play-services:11.0.4'
implementation 'com.google.firebase:firebase-core:16.0.1'
}
apply plugin: 'com.google.gms.google-services'
Project level
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'
classpath 'com.google.gms:google-services:4.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Running ./gradlew app:dependencies
gives:
Failed to notify dependency resolution listener.
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[11.0.4,11.0.4], [15.0.1,15.0.1]], but resolves to 15.0.1. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
The library com.google.firebase:firebase-common is being requested by various other libraries at [[11.0.4,11.0.4]], but resolves to 16.0.0. Disable the plugin and check your dependencies tree using ./gradlew :app:dependencies.
android firebase firebase-realtime-database android-gradle
android firebase firebase-realtime-database android-gradle
asked Nov 10 at 22:44
Mukul Gupta
1,01711230
1,01711230
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
up vote
3
down vote
accepted
Update the following:
classpath 'com.google.gms:google-services:4.0.1'
to this:
classpath 'com.google.gms:google-services:4.1.0'
Also as stated in the docs:
Note: Don't use the combined
play-services
target. It brings in dozens of libraries, bloating your application. Instead, specify only the specific Google Play services APIs your app uses.
Therefore, remove this:
implementation 'com.google.android.gms:play-services:11.0.4'
And add a specific google play service api with an updated version, example implementation 'com.google.android.gms:play-services-auth:16.0.1'
Also update the firebase-core to version 16.0.4
Check here for more info:
https://developers.google.com/android/guides/setup
When you get this error:
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
It means that a direct dependency (inside the google maven repository) that you are using in gradle, is using the transitive dependency com.google.android.gms:play-services-basement
.
Here in this case firebase-core:16.0.1
uses play-services-basement:15.0.1
and the latest version of play-services-basement
is 16.0.1
, thus you get this error.
You can also check this in October 2, 2018 they did the following:
Minor internal feature updates were made to some core libraries (play-services-auth, play-services-base, play-services-basement, play-services-flags, play-services-stats, play-services-tasks) used by other Google Play services libraries.
Also they released the com.google.android.gms:play-services-basement:16.0.1
and com.google.firebase:firebase-core:16.0.4
Also check my answer here:
Android | Cannot add all Google libraries for version 15.0.1
After applying the changes you suggested and usingcom.google.android.gms:play-services-vision:16.2.0
instead of theplay-services
target, I now get:The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?
– Mukul Gupta
Nov 10 at 23:15
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
Thanks. Upgradingfirebase-core
to 16.0.4 worked. Setting classpath tocom.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?
– Mukul Gupta
Nov 11 at 10:09
|
show 3 more comments
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
accepted
Update the following:
classpath 'com.google.gms:google-services:4.0.1'
to this:
classpath 'com.google.gms:google-services:4.1.0'
Also as stated in the docs:
Note: Don't use the combined
play-services
target. It brings in dozens of libraries, bloating your application. Instead, specify only the specific Google Play services APIs your app uses.
Therefore, remove this:
implementation 'com.google.android.gms:play-services:11.0.4'
And add a specific google play service api with an updated version, example implementation 'com.google.android.gms:play-services-auth:16.0.1'
Also update the firebase-core to version 16.0.4
Check here for more info:
https://developers.google.com/android/guides/setup
When you get this error:
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
It means that a direct dependency (inside the google maven repository) that you are using in gradle, is using the transitive dependency com.google.android.gms:play-services-basement
.
Here in this case firebase-core:16.0.1
uses play-services-basement:15.0.1
and the latest version of play-services-basement
is 16.0.1
, thus you get this error.
You can also check this in October 2, 2018 they did the following:
Minor internal feature updates were made to some core libraries (play-services-auth, play-services-base, play-services-basement, play-services-flags, play-services-stats, play-services-tasks) used by other Google Play services libraries.
Also they released the com.google.android.gms:play-services-basement:16.0.1
and com.google.firebase:firebase-core:16.0.4
Also check my answer here:
Android | Cannot add all Google libraries for version 15.0.1
After applying the changes you suggested and usingcom.google.android.gms:play-services-vision:16.2.0
instead of theplay-services
target, I now get:The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?
– Mukul Gupta
Nov 10 at 23:15
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
Thanks. Upgradingfirebase-core
to 16.0.4 worked. Setting classpath tocom.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?
– Mukul Gupta
Nov 11 at 10:09
|
show 3 more comments
up vote
3
down vote
accepted
Update the following:
classpath 'com.google.gms:google-services:4.0.1'
to this:
classpath 'com.google.gms:google-services:4.1.0'
Also as stated in the docs:
Note: Don't use the combined
play-services
target. It brings in dozens of libraries, bloating your application. Instead, specify only the specific Google Play services APIs your app uses.
Therefore, remove this:
implementation 'com.google.android.gms:play-services:11.0.4'
And add a specific google play service api with an updated version, example implementation 'com.google.android.gms:play-services-auth:16.0.1'
Also update the firebase-core to version 16.0.4
Check here for more info:
https://developers.google.com/android/guides/setup
When you get this error:
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
It means that a direct dependency (inside the google maven repository) that you are using in gradle, is using the transitive dependency com.google.android.gms:play-services-basement
.
Here in this case firebase-core:16.0.1
uses play-services-basement:15.0.1
and the latest version of play-services-basement
is 16.0.1
, thus you get this error.
You can also check this in October 2, 2018 they did the following:
Minor internal feature updates were made to some core libraries (play-services-auth, play-services-base, play-services-basement, play-services-flags, play-services-stats, play-services-tasks) used by other Google Play services libraries.
Also they released the com.google.android.gms:play-services-basement:16.0.1
and com.google.firebase:firebase-core:16.0.4
Also check my answer here:
Android | Cannot add all Google libraries for version 15.0.1
After applying the changes you suggested and usingcom.google.android.gms:play-services-vision:16.2.0
instead of theplay-services
target, I now get:The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?
– Mukul Gupta
Nov 10 at 23:15
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
Thanks. Upgradingfirebase-core
to 16.0.4 worked. Setting classpath tocom.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?
– Mukul Gupta
Nov 11 at 10:09
|
show 3 more comments
up vote
3
down vote
accepted
up vote
3
down vote
accepted
Update the following:
classpath 'com.google.gms:google-services:4.0.1'
to this:
classpath 'com.google.gms:google-services:4.1.0'
Also as stated in the docs:
Note: Don't use the combined
play-services
target. It brings in dozens of libraries, bloating your application. Instead, specify only the specific Google Play services APIs your app uses.
Therefore, remove this:
implementation 'com.google.android.gms:play-services:11.0.4'
And add a specific google play service api with an updated version, example implementation 'com.google.android.gms:play-services-auth:16.0.1'
Also update the firebase-core to version 16.0.4
Check here for more info:
https://developers.google.com/android/guides/setup
When you get this error:
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
It means that a direct dependency (inside the google maven repository) that you are using in gradle, is using the transitive dependency com.google.android.gms:play-services-basement
.
Here in this case firebase-core:16.0.1
uses play-services-basement:15.0.1
and the latest version of play-services-basement
is 16.0.1
, thus you get this error.
You can also check this in October 2, 2018 they did the following:
Minor internal feature updates were made to some core libraries (play-services-auth, play-services-base, play-services-basement, play-services-flags, play-services-stats, play-services-tasks) used by other Google Play services libraries.
Also they released the com.google.android.gms:play-services-basement:16.0.1
and com.google.firebase:firebase-core:16.0.4
Also check my answer here:
Android | Cannot add all Google libraries for version 15.0.1
Update the following:
classpath 'com.google.gms:google-services:4.0.1'
to this:
classpath 'com.google.gms:google-services:4.1.0'
Also as stated in the docs:
Note: Don't use the combined
play-services
target. It brings in dozens of libraries, bloating your application. Instead, specify only the specific Google Play services APIs your app uses.
Therefore, remove this:
implementation 'com.google.android.gms:play-services:11.0.4'
And add a specific google play service api with an updated version, example implementation 'com.google.android.gms:play-services-auth:16.0.1'
Also update the firebase-core to version 16.0.4
Check here for more info:
https://developers.google.com/android/guides/setup
When you get this error:
The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
It means that a direct dependency (inside the google maven repository) that you are using in gradle, is using the transitive dependency com.google.android.gms:play-services-basement
.
Here in this case firebase-core:16.0.1
uses play-services-basement:15.0.1
and the latest version of play-services-basement
is 16.0.1
, thus you get this error.
You can also check this in October 2, 2018 they did the following:
Minor internal feature updates were made to some core libraries (play-services-auth, play-services-base, play-services-basement, play-services-flags, play-services-stats, play-services-tasks) used by other Google Play services libraries.
Also they released the com.google.android.gms:play-services-basement:16.0.1
and com.google.firebase:firebase-core:16.0.4
Also check my answer here:
Android | Cannot add all Google libraries for version 15.0.1
edited Nov 11 at 11:37
answered Nov 10 at 22:54
Peter Haddad
19.8k83955
19.8k83955
After applying the changes you suggested and usingcom.google.android.gms:play-services-vision:16.2.0
instead of theplay-services
target, I now get:The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?
– Mukul Gupta
Nov 10 at 23:15
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
Thanks. Upgradingfirebase-core
to 16.0.4 worked. Setting classpath tocom.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?
– Mukul Gupta
Nov 11 at 10:09
|
show 3 more comments
After applying the changes you suggested and usingcom.google.android.gms:play-services-vision:16.2.0
instead of theplay-services
target, I now get:The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?
– Mukul Gupta
Nov 10 at 23:15
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
Thanks. Upgradingfirebase-core
to 16.0.4 worked. Setting classpath tocom.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?
– Mukul Gupta
Nov 11 at 10:09
After applying the changes you suggested and using
com.google.android.gms:play-services-vision:16.2.0
instead of the play-services
target, I now get: The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?– Mukul Gupta
Nov 10 at 23:15
After applying the changes you suggested and using
com.google.android.gms:play-services-vision:16.2.0
instead of the play-services
target, I now get: The library com.google.android.gms:play-services-basement is being requested by various other libraries at [[15.0.1,15.0.1]], but resolves to 16.0.1.
Also, could you explain why you suggest downgrading gradle to 3.1.0 and upgrading google-services to 4.1.0?– Mukul Gupta
Nov 10 at 23:15
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
oops nevermind gradle keep it the same, keep gradle the same and sync also what google service api did you use with which version?
– Peter Haddad
Nov 10 at 23:35
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
The error's the same. I'm using mobile vision APIs. Previously, I was using the entire target: play-services-11.0.4 as mentioned in the gradle file.
– Mukul Gupta
Nov 10 at 23:54
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
update firebase-core to version 16.0.4
– Peter Haddad
Nov 11 at 0:06
Thanks. Upgrading
firebase-core
to 16.0.4 worked. Setting classpath to com.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?– Mukul Gupta
Nov 11 at 10:09
Thanks. Upgrading
firebase-core
to 16.0.4 worked. Setting classpath to com.google.gms:google-services:4.1.0
was not required. Could you explain or point out some documentation that made you realize that the specific version should be updated? Could you also update the answer with the suggestions in comments that eventually made it to work?– Mukul Gupta
Nov 11 at 10:09
|
show 3 more comments
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53244160%2fgradle-sync-fails-com-google-android-gmsplay-services-basement-and-com-google%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown