Failed to resolve: play-services-auth-base-license version 11.8.0
up vote
3
down vote
favorite
I tried to integrate google smart login and SMS SmsRetrieverClient in my project. First thing that shocked me is, on the official documentation of these functionalities(https://developers.google.com/identity/sms-retriever/request#prerequisites), the required libraries are missing. Some how i tried to find out the required ones on net that are :
implementation 'com.google.android.gms:play-services-base:11.8.0'
implementation 'com.google.android.gms:play-services-identity:11.8.0'
implementation 'com.google.android.gms:play-services-auth:11.8.0'
implementation 'com.google.android.gms:play-services-auth-api-phone:11.8.0'
but as i sync the gradle one error is coming. i.e.
Failed to resolve: play-services-auth-base-license Open File
I have made a lot of search on google but do not got any solution.
The sample of google on git hub is: https://github.com/googlesamples/android-credentials/tree/master/sms-verification/android
add a comment |
up vote
3
down vote
favorite
I tried to integrate google smart login and SMS SmsRetrieverClient in my project. First thing that shocked me is, on the official documentation of these functionalities(https://developers.google.com/identity/sms-retriever/request#prerequisites), the required libraries are missing. Some how i tried to find out the required ones on net that are :
implementation 'com.google.android.gms:play-services-base:11.8.0'
implementation 'com.google.android.gms:play-services-identity:11.8.0'
implementation 'com.google.android.gms:play-services-auth:11.8.0'
implementation 'com.google.android.gms:play-services-auth-api-phone:11.8.0'
but as i sync the gradle one error is coming. i.e.
Failed to resolve: play-services-auth-base-license Open File
I have made a lot of search on google but do not got any solution.
The sample of google on git hub is: https://github.com/googlesamples/android-credentials/tree/master/sms-verification/android
@Manohan Soni try to update your dependencies and make sure you use the latest google-services. if this doesnt help please add your grandle files to help
– Paraskevas Ntsounos
Jun 8 at 10:47
@Paraskevas Ntsounos : Actually i am working on our product. So i need to use only 11.8.0. Because all the previous libraries are working with that only. So i can not take risk . I have also used 11.6.0 but with this version the issue is not coming. But i need to fix the issue with version 11.8.0
– Manmohan Soni
Jun 8 at 10:52
check this android-developers.googleblog.com/2018/05/… and also try my answer if you update all libraries everything will work, at least you could try and check if everything works fine.
– Paraskevas Ntsounos
Jun 8 at 11:08
1
Yeh, already integrated in that way... i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was jcenter() maven { url "maven.google.com" } maven { url 'maven.singular.net' } and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there
– Manmohan Soni
Jun 8 at 11:26
add a comment |
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I tried to integrate google smart login and SMS SmsRetrieverClient in my project. First thing that shocked me is, on the official documentation of these functionalities(https://developers.google.com/identity/sms-retriever/request#prerequisites), the required libraries are missing. Some how i tried to find out the required ones on net that are :
implementation 'com.google.android.gms:play-services-base:11.8.0'
implementation 'com.google.android.gms:play-services-identity:11.8.0'
implementation 'com.google.android.gms:play-services-auth:11.8.0'
implementation 'com.google.android.gms:play-services-auth-api-phone:11.8.0'
but as i sync the gradle one error is coming. i.e.
Failed to resolve: play-services-auth-base-license Open File
I have made a lot of search on google but do not got any solution.
The sample of google on git hub is: https://github.com/googlesamples/android-credentials/tree/master/sms-verification/android
I tried to integrate google smart login and SMS SmsRetrieverClient in my project. First thing that shocked me is, on the official documentation of these functionalities(https://developers.google.com/identity/sms-retriever/request#prerequisites), the required libraries are missing. Some how i tried to find out the required ones on net that are :
implementation 'com.google.android.gms:play-services-base:11.8.0'
implementation 'com.google.android.gms:play-services-identity:11.8.0'
implementation 'com.google.android.gms:play-services-auth:11.8.0'
implementation 'com.google.android.gms:play-services-auth-api-phone:11.8.0'
but as i sync the gradle one error is coming. i.e.
Failed to resolve: play-services-auth-base-license Open File
I have made a lot of search on google but do not got any solution.
The sample of google on git hub is: https://github.com/googlesamples/android-credentials/tree/master/sms-verification/android
edited Jun 8 at 13:02
Paraskevas Ntsounos
1,1521626
1,1521626
asked Jun 8 at 10:40
Manmohan Soni
4,14211823
4,14211823
@Manohan Soni try to update your dependencies and make sure you use the latest google-services. if this doesnt help please add your grandle files to help
– Paraskevas Ntsounos
Jun 8 at 10:47
@Paraskevas Ntsounos : Actually i am working on our product. So i need to use only 11.8.0. Because all the previous libraries are working with that only. So i can not take risk . I have also used 11.6.0 but with this version the issue is not coming. But i need to fix the issue with version 11.8.0
– Manmohan Soni
Jun 8 at 10:52
check this android-developers.googleblog.com/2018/05/… and also try my answer if you update all libraries everything will work, at least you could try and check if everything works fine.
– Paraskevas Ntsounos
Jun 8 at 11:08
1
Yeh, already integrated in that way... i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was jcenter() maven { url "maven.google.com" } maven { url 'maven.singular.net' } and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there
– Manmohan Soni
Jun 8 at 11:26
add a comment |
@Manohan Soni try to update your dependencies and make sure you use the latest google-services. if this doesnt help please add your grandle files to help
– Paraskevas Ntsounos
Jun 8 at 10:47
@Paraskevas Ntsounos : Actually i am working on our product. So i need to use only 11.8.0. Because all the previous libraries are working with that only. So i can not take risk . I have also used 11.6.0 but with this version the issue is not coming. But i need to fix the issue with version 11.8.0
– Manmohan Soni
Jun 8 at 10:52
check this android-developers.googleblog.com/2018/05/… and also try my answer if you update all libraries everything will work, at least you could try and check if everything works fine.
– Paraskevas Ntsounos
Jun 8 at 11:08
1
Yeh, already integrated in that way... i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was jcenter() maven { url "maven.google.com" } maven { url 'maven.singular.net' } and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there
– Manmohan Soni
Jun 8 at 11:26
@Manohan Soni try to update your dependencies and make sure you use the latest google-services. if this doesnt help please add your grandle files to help
– Paraskevas Ntsounos
Jun 8 at 10:47
@Manohan Soni try to update your dependencies and make sure you use the latest google-services. if this doesnt help please add your grandle files to help
– Paraskevas Ntsounos
Jun 8 at 10:47
@Paraskevas Ntsounos : Actually i am working on our product. So i need to use only 11.8.0. Because all the previous libraries are working with that only. So i can not take risk . I have also used 11.6.0 but with this version the issue is not coming. But i need to fix the issue with version 11.8.0
– Manmohan Soni
Jun 8 at 10:52
@Paraskevas Ntsounos : Actually i am working on our product. So i need to use only 11.8.0. Because all the previous libraries are working with that only. So i can not take risk . I have also used 11.6.0 but with this version the issue is not coming. But i need to fix the issue with version 11.8.0
– Manmohan Soni
Jun 8 at 10:52
check this android-developers.googleblog.com/2018/05/… and also try my answer if you update all libraries everything will work, at least you could try and check if everything works fine.
– Paraskevas Ntsounos
Jun 8 at 11:08
check this android-developers.googleblog.com/2018/05/… and also try my answer if you update all libraries everything will work, at least you could try and check if everything works fine.
– Paraskevas Ntsounos
Jun 8 at 11:08
1
1
Yeh, already integrated in that way... i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was jcenter() maven { url "maven.google.com" } maven { url 'maven.singular.net' } and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there
– Manmohan Soni
Jun 8 at 11:26
Yeh, already integrated in that way... i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was jcenter() maven { url "maven.google.com" } maven { url 'maven.singular.net' } and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there
– Manmohan Soni
Jun 8 at 11:26
add a comment |
4 Answers
4
active
oldest
votes
up vote
9
down vote
i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was
jcenter()
maven { url "maven.google.com"; }
maven { url'maven.singular.net/'; }
and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there –
So the current sequence is :
maven { url "https://maven.google.com" }
maven { url 'http://maven.singular.net/' }
jcenter()
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
add a comment |
up vote
1
down vote
Try to update your dependencies based on this link like below:
implementation 'com.google.android.gms:play-services-base:15.0.1'
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-auth-api-phone:15.0.1'
And make sure that you are using the lateste update of google-services like:
classpath 'com.google.gms:google-services:4.0.1'
Firebase Android SDKs and Google Play Services libraries now have independent version numbers, allowing for more frequent, flexible updates.
Update the google play service gradle plugin version to latest version (at least 3.3.1).
and update the libraries to the latest version.
add a comment |
up vote
0
down vote
in your build.gradle file where you make use of
compile 'com.facebook.android:account-kit-sdk:4+'
compile 'com.facebook.android:facebook-android-sdk:4+'
replace with
implementation 'com.facebook.android:account-kit-sdk:4.23.0'
implementation 'com.facebook.android:facebook-android-sdk:4.23.0'
add a comment |
up vote
-1
down vote
If you already have
maven { url "https://maven.google.com" }just make sure to move it up before jcenter()it will look like this
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
on build.gradle(Project:android)
Oh and I am using ionic3.
add a comment |
4 Answers
4
active
oldest
votes
4 Answers
4
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
9
down vote
i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was
jcenter()
maven { url "maven.google.com"; }
maven { url'maven.singular.net/'; }
and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there –
So the current sequence is :
maven { url "https://maven.google.com" }
maven { url 'http://maven.singular.net/' }
jcenter()
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
add a comment |
up vote
9
down vote
i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was
jcenter()
maven { url "maven.google.com"; }
maven { url'maven.singular.net/'; }
and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there –
So the current sequence is :
maven { url "https://maven.google.com" }
maven { url 'http://maven.singular.net/' }
jcenter()
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
add a comment |
up vote
9
down vote
up vote
9
down vote
i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was
jcenter()
maven { url "maven.google.com"; }
maven { url'maven.singular.net/'; }
and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there –
So the current sequence is :
maven { url "https://maven.google.com" }
maven { url 'http://maven.singular.net/' }
jcenter()
i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was
jcenter()
maven { url "maven.google.com"; }
maven { url'maven.singular.net/'; }
and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there –
So the current sequence is :
maven { url "https://maven.google.com" }
maven { url 'http://maven.singular.net/' }
jcenter()
answered Jun 8 at 11:33
Manmohan Soni
4,14211823
4,14211823
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
add a comment |
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
please next time indicate which file should be edited . for anyone with this problem make the modification in the build.gradle in the android folder.
– ghkatende
Jun 13 at 10:16
add a comment |
up vote
1
down vote
Try to update your dependencies based on this link like below:
implementation 'com.google.android.gms:play-services-base:15.0.1'
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-auth-api-phone:15.0.1'
And make sure that you are using the lateste update of google-services like:
classpath 'com.google.gms:google-services:4.0.1'
Firebase Android SDKs and Google Play Services libraries now have independent version numbers, allowing for more frequent, flexible updates.
Update the google play service gradle plugin version to latest version (at least 3.3.1).
and update the libraries to the latest version.
add a comment |
up vote
1
down vote
Try to update your dependencies based on this link like below:
implementation 'com.google.android.gms:play-services-base:15.0.1'
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-auth-api-phone:15.0.1'
And make sure that you are using the lateste update of google-services like:
classpath 'com.google.gms:google-services:4.0.1'
Firebase Android SDKs and Google Play Services libraries now have independent version numbers, allowing for more frequent, flexible updates.
Update the google play service gradle plugin version to latest version (at least 3.3.1).
and update the libraries to the latest version.
add a comment |
up vote
1
down vote
up vote
1
down vote
Try to update your dependencies based on this link like below:
implementation 'com.google.android.gms:play-services-base:15.0.1'
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-auth-api-phone:15.0.1'
And make sure that you are using the lateste update of google-services like:
classpath 'com.google.gms:google-services:4.0.1'
Firebase Android SDKs and Google Play Services libraries now have independent version numbers, allowing for more frequent, flexible updates.
Update the google play service gradle plugin version to latest version (at least 3.3.1).
and update the libraries to the latest version.
Try to update your dependencies based on this link like below:
implementation 'com.google.android.gms:play-services-base:15.0.1'
implementation 'com.google.android.gms:play-services-identity:15.0.1'
implementation 'com.google.android.gms:play-services-auth:15.0.1'
implementation 'com.google.android.gms:play-services-auth-api-phone:15.0.1'
And make sure that you are using the lateste update of google-services like:
classpath 'com.google.gms:google-services:4.0.1'
Firebase Android SDKs and Google Play Services libraries now have independent version numbers, allowing for more frequent, flexible updates.
Update the google play service gradle plugin version to latest version (at least 3.3.1).
and update the libraries to the latest version.
edited Jun 8 at 11:03
answered Jun 8 at 10:46
Paraskevas Ntsounos
1,1521626
1,1521626
add a comment |
add a comment |
up vote
0
down vote
in your build.gradle file where you make use of
compile 'com.facebook.android:account-kit-sdk:4+'
compile 'com.facebook.android:facebook-android-sdk:4+'
replace with
implementation 'com.facebook.android:account-kit-sdk:4.23.0'
implementation 'com.facebook.android:facebook-android-sdk:4.23.0'
add a comment |
up vote
0
down vote
in your build.gradle file where you make use of
compile 'com.facebook.android:account-kit-sdk:4+'
compile 'com.facebook.android:facebook-android-sdk:4+'
replace with
implementation 'com.facebook.android:account-kit-sdk:4.23.0'
implementation 'com.facebook.android:facebook-android-sdk:4.23.0'
add a comment |
up vote
0
down vote
up vote
0
down vote
in your build.gradle file where you make use of
compile 'com.facebook.android:account-kit-sdk:4+'
compile 'com.facebook.android:facebook-android-sdk:4+'
replace with
implementation 'com.facebook.android:account-kit-sdk:4.23.0'
implementation 'com.facebook.android:facebook-android-sdk:4.23.0'
in your build.gradle file where you make use of
compile 'com.facebook.android:account-kit-sdk:4+'
compile 'com.facebook.android:facebook-android-sdk:4+'
replace with
implementation 'com.facebook.android:account-kit-sdk:4.23.0'
implementation 'com.facebook.android:facebook-android-sdk:4.23.0'
answered Nov 21 at 21:32
Alabi Temitope
6416
6416
add a comment |
add a comment |
up vote
-1
down vote
If you already have
maven { url "https://maven.google.com" }just make sure to move it up before jcenter()it will look like this
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
on build.gradle(Project:android)
Oh and I am using ionic3.
add a comment |
up vote
-1
down vote
If you already have
maven { url "https://maven.google.com" }just make sure to move it up before jcenter()it will look like this
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
on build.gradle(Project:android)
Oh and I am using ionic3.
add a comment |
up vote
-1
down vote
up vote
-1
down vote
If you already have
maven { url "https://maven.google.com" }just make sure to move it up before jcenter()it will look like this
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
on build.gradle(Project:android)
Oh and I am using ionic3.
If you already have
maven { url "https://maven.google.com" }just make sure to move it up before jcenter()it will look like this
allprojects {
repositories {
maven {
url "https://maven.google.com"
}
jcenter()
}
on build.gradle(Project:android)
Oh and I am using ionic3.
edited 13 hours ago
Agilanbu
901617
901617
answered 14 hours ago
Usman Kazmi
91
91
add a comment |
add a comment |
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%2f50758822%2ffailed-to-resolve-play-services-auth-base-license-version-11-8-0%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
@Manohan Soni try to update your dependencies and make sure you use the latest google-services. if this doesnt help please add your grandle files to help
– Paraskevas Ntsounos
Jun 8 at 10:47
@Paraskevas Ntsounos : Actually i am working on our product. So i need to use only 11.8.0. Because all the previous libraries are working with that only. So i can not take risk . I have also used 11.6.0 but with this version the issue is not coming. But i need to fix the issue with version 11.8.0
– Manmohan Soni
Jun 8 at 10:52
check this android-developers.googleblog.com/2018/05/… and also try my answer if you update all libraries everything will work, at least you could try and check if everything works fine.
– Paraskevas Ntsounos
Jun 8 at 11:08
1
Yeh, already integrated in that way... i just found the issue.. it was due to the sequence of jcenter() library. Previously the sequence was jcenter() maven { url "maven.google.com" } maven { url 'maven.singular.net' } and now i change the sequence and bring the jcenter() down in the last. Some of the libraries are removed from there.... any ways it has been solved. google rocks ---- removed some of the libs from there
– Manmohan Soni
Jun 8 at 11:26