Failed to resolve: firebase-auth-15.0.0 error when trying to add Firebase authentication [duplicate]
This question already has an answer here:
Dependancy error when integrating android studio project with Firebase for a google sign in feature
4 answers
I want to connect my app of Android Studio to Firebase but I am getting this error:
Failed to resolve: firebase-auth-15.0.0
This is my current screen:
Is there anything wrong here?
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
}
I have tried cleaning the project and run it again. It didn't make a change.
I have tried removing
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
and changing it for:
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.3'
with the three of them separately the error goes away, but the Firebase dependency is not setting up.
android firebase android-studio firebase-authentication
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 15 '18 at 12:24
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
add a comment |
This question already has an answer here:
Dependancy error when integrating android studio project with Firebase for a google sign in feature
4 answers
I want to connect my app of Android Studio to Firebase but I am getting this error:
Failed to resolve: firebase-auth-15.0.0
This is my current screen:
Is there anything wrong here?
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
}
I have tried cleaning the project and run it again. It didn't make a change.
I have tried removing
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
and changing it for:
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.3'
with the three of them separately the error goes away, but the Firebase dependency is not setting up.
android firebase android-studio firebase-authentication
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 15 '18 at 12:24
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Try to add last versionimplementation 'com.google.firebase:firebase-auth:16.0.5'
– Vadim Eksler
Nov 15 '18 at 6:44
And apply plugin: 'com.google.gms.google-services' to last line after closing dependencies
– Vadim Eksler
Nov 15 '18 at 6:47
add a comment |
This question already has an answer here:
Dependancy error when integrating android studio project with Firebase for a google sign in feature
4 answers
I want to connect my app of Android Studio to Firebase but I am getting this error:
Failed to resolve: firebase-auth-15.0.0
This is my current screen:
Is there anything wrong here?
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
}
I have tried cleaning the project and run it again. It didn't make a change.
I have tried removing
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
and changing it for:
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.3'
with the three of them separately the error goes away, but the Firebase dependency is not setting up.
android firebase android-studio firebase-authentication
This question already has an answer here:
Dependancy error when integrating android studio project with Firebase for a google sign in feature
4 answers
I want to connect my app of Android Studio to Firebase but I am getting this error:
Failed to resolve: firebase-auth-15.0.0
This is my current screen:
Is there anything wrong here?
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:28.0.0'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
}
I have tried cleaning the project and run it again. It didn't make a change.
I have tried removing
implementation 'com.google.firebase:firebase-auth:16.0.1:15.0.0'
and changing it for:
implementation 'com.google.firebase:firebase-auth:16.0.1'
implementation 'com.google.firebase:firebase-auth:16.0.2'
implementation 'com.google.firebase:firebase-auth:16.0.3'
with the three of them separately the error goes away, but the Firebase dependency is not setting up.
This question already has an answer here:
Dependancy error when integrating android studio project with Firebase for a google sign in feature
4 answers
android firebase android-studio firebase-authentication
android firebase android-studio firebase-authentication
edited Nov 15 '18 at 12:07
KENdi
5,8192921
5,8192921
asked Nov 15 '18 at 0:56
ANDYANDY
102
102
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 15 '18 at 12:24
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
marked as duplicate by Alex Mamo
StackExchange.ready(function() {
if (StackExchange.options.isMobile) return;
$('.dupe-hammer-message-hover:not(.hover-bound)').each(function() {
var $hover = $(this).addClass('hover-bound'),
$msg = $hover.siblings('.dupe-hammer-message');
$hover.hover(
function() {
$hover.showInfoMessage('', {
messageElement: $msg.clone().show(),
transient: false,
position: { my: 'bottom left', at: 'top center', offsetTop: -7 },
dismissable: false,
relativeToBody: true
});
},
function() {
StackExchange.helpers.removeMessages();
}
);
});
});
Nov 15 '18 at 12:24
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
Try to add last versionimplementation 'com.google.firebase:firebase-auth:16.0.5'
– Vadim Eksler
Nov 15 '18 at 6:44
And apply plugin: 'com.google.gms.google-services' to last line after closing dependencies
– Vadim Eksler
Nov 15 '18 at 6:47
add a comment |
Try to add last versionimplementation 'com.google.firebase:firebase-auth:16.0.5'
– Vadim Eksler
Nov 15 '18 at 6:44
And apply plugin: 'com.google.gms.google-services' to last line after closing dependencies
– Vadim Eksler
Nov 15 '18 at 6:47
Try to add last version
implementation 'com.google.firebase:firebase-auth:16.0.5'
– Vadim Eksler
Nov 15 '18 at 6:44
Try to add last version
implementation 'com.google.firebase:firebase-auth:16.0.5'
– Vadim Eksler
Nov 15 '18 at 6:44
And apply plugin: 'com.google.gms.google-services' to last line after closing dependencies
– Vadim Eksler
Nov 15 '18 at 6:47
And apply plugin: 'com.google.gms.google-services' to last line after closing dependencies
– Vadim Eksler
Nov 15 '18 at 6:47
add a comment |
1 Answer
1
active
oldest
votes
Try to add this instead of using a lower version.
implementation 'com.google.firebase:firebase-auth:16.0.5'
For more you can follow this: https://firebase.google.com/support/guides/firebase-android
add a comment |
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Try to add this instead of using a lower version.
implementation 'com.google.firebase:firebase-auth:16.0.5'
For more you can follow this: https://firebase.google.com/support/guides/firebase-android
add a comment |
Try to add this instead of using a lower version.
implementation 'com.google.firebase:firebase-auth:16.0.5'
For more you can follow this: https://firebase.google.com/support/guides/firebase-android
add a comment |
Try to add this instead of using a lower version.
implementation 'com.google.firebase:firebase-auth:16.0.5'
For more you can follow this: https://firebase.google.com/support/guides/firebase-android
Try to add this instead of using a lower version.
implementation 'com.google.firebase:firebase-auth:16.0.5'
For more you can follow this: https://firebase.google.com/support/guides/firebase-android
answered Nov 15 '18 at 12:12
Faysal AhmedFaysal Ahmed
4,02841432
4,02841432
add a comment |
add a comment |
Try to add last version
implementation 'com.google.firebase:firebase-auth:16.0.5'
– Vadim Eksler
Nov 15 '18 at 6:44
And apply plugin: 'com.google.gms.google-services' to last line after closing dependencies
– Vadim Eksler
Nov 15 '18 at 6:47