Welcome to FirebaseUI and thanks for submitting an issue!
Please take a look at open issues, as well as resolved issues, to see if your issue is either already being addressed, or has been solved by someone else.
If not, please feel free to fill in the following info so we can help faster!
logcat output, etc.
// TODO(you): code here to reproduce the problem
@royal008 please fill out the issue template when filing an issue. As I can see from the issue title, this is not a FirebaseUI issue but a normal dependency issue. If you need help solving it please try StackOverflow.
I solved this problem by changing in app.gradle as following -
Replacing
implementation 'com.android.support:appcompat-v7:26.0.1'
wihth
implementation 'com.android.support:appcompat-v7:27.1.1'
Replace
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2'
with
androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
implementation 'com.android.support:appcompat-v7:26.0.1'
with
implementation 'com.android.support:appcompat-v7:27.1.
This solution is working only for one project when i create new project same issue is occuring
i know i can replace these line in every project but i want to know why it is happenning
implementation 'com.android.support:appcompat-v7:26.0.1'
with
implementation 'com.android.support:appcompat-v7:27.1.
This solution is working only for one project when i create new project same issue is occuring i know i can replace these line in every project but i want to know why it is happening.
This happens because while creating project you are not setting correct compileSdkVersion, minSdkVersion & targetSdkVersion. Make sure these three values matches the required version.
@SubhamKuswa
thank you i will try it..
On Tue, May 29, 2018, 12:12 PM abhilashasurmount notifications@github.com
wrote:
implementation 'com.android.support:appcompat-v7:26.0.1'
with
implementation 'com.android.support:appcompat-v7:27.1.
This solution is working only for one project when i create new project
same issue is occuring i know i can replace these line in every project but
i want to know why it is happening.This happens because while creating project you are not setting correct
compileSdkVersion, minSdkVersion & targetSdkVersion. Make sure
these three values matches the required version.@SubhamKuswa https://github.com/SubhamKuswa
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
https://github.com/firebase/FirebaseUI-Android/issues/1272#issuecomment-392668914,
or mute the thread
https://github.com/notifications/unsubscribe-auth/Al4ebDAJOsSKndEobXrzt1zXPQ9gtymEks5t3O3BgaJpZM4Tp5BP
.
@SubhamKuswa did you able to solve this problem ? because i am facing the same problem
Most helpful comment
I solved this problem by changing in app.gradle as following -
Replacing
implementation 'com.android.support:appcompat-v7:26.0.1'
wihth
implementation 'com.android.support:appcompat-v7:27.1.1'