Why do we have to enter the details eventually - manually or by using sessions? Can't it be like we click on '+' button on UserDashboard Screen and the RetailerStartUp Screen with LOGIN and SIGN UP buttons doesn't appear at all if we are already logged into the system and we automatically move to RetailerDashboard Screen. Why do we have to go through the login process again and again, even if we're not entering the phone and password manually and doing it by sessions, still it is a bit tacky to go through the login page. Why not directly to Dashboard if already logged in?
Buddy! Please check my video on Sessions and in that I have already created a function which is checkLogin() and we will call this function from dashboard + and check if the user is logged in or not! If not then redirect to login.
@@CodingwithT Yeah, but in that case too, we have to go through the RetailerStartUpScreen, because we're only checking for login status using checkLogin() in dashboard which we'll reach only by going through RetailerStartUpScreen. Check this once again!
am getting this error msg error: constructor SessionManager in class SessionManager cannot be applied to given types; required: Context,String found: RetailerDashbored reason: actual and formal argument lists differ in length
public SessionManager(Context _context,String sessionName) { context = _context; userSession = context.getSharedPreferences(sessionName, Context.MODE_PRIVATE); editor = userSession.edit(); this is my class
I've 2 type of users in my application, I want to store their details whoever logged in. I think the process is same as you did in this video. I don't need remember me, instead I just want to store 2 different users data accordingly. I did exactly what you showed, but in the end only first user's data is storing to shared preference. When the other type of users log in, it' just getting null values.
I really love your videos I have been looking for a way to build a kind of tour guide all for my state and this designs helped me through.. Pls I followed your tutorials but I couldn't find where you did the search location page, the insertion of details page of single location for the users and for the location owner dashboard u only did signup and login...no dashboard,profile,adding of missing place and managing reviews
Glad I could help! and if you are following the series then you might missed the first overview video as I explained that how will be the flow. So, After this video all the videos will be about dashboard and getting location and managing it etc. Check it out ua-cam.com/video/lrvmdRW7rzw/v-deo.html
@@naveendgp91 That is to give an option to the user to choose all the methods our app has to validate the user account. If you have only one way then adding that screen might be not a good approach.
Can you make it to remember user once logged in? Like once user is logged in and comes back then he/she doesn't have to enter details or even click login button. He/she will be logged in unless user logged out manually?
Using previous video tutorial of sessions you can do that by just calling the function checkLogin() and if it returns true then get all the values stored in session and directly redirects to the Dashboard or profile
@@CodingwithT Thanks! I did the thing and all worked out perfectly! Really Thank you Sir I am glad u are on UA-cam!. You are the best teacher in the world
@@WorkOps_IN bro do like this create sessionmanager variable, SessionManager manager = new SessionManager(this); then, if(manager.checkLogin){go to home} else{go to login}
@@moulichowdary4330 Bro, you can download your own illustrations. Download any illustration from undraw.co/illustrations You can also change their colors according to your need from that color button at top right corner. You can search for any illustration also using specific keywords. The illustration will be downloaded in svg (vector) format which you can directly use in android:src property of ImageView in android. P.S. : Try to use your own resources instead of asking from others. Hope that helps!
Taimoor Bhai ek or help chaiye thi aapki....how to make filter like amazon if we click on filter button then fragment appears in which we select the brand name then amazon apk only shows us products of that brand only..
and code for a fragment should appear on a button click and should disappears with the same button click it should appears on first click and should disappears with second click..... third_click(appears) fourth_click(disappear) likewise....
Basically behind that fragment search they are just creating a query to fetch data and show related data to users! And for the button you can set boolean if true open fragment else close it
Sir aapka mast work karte ho explain b out standing, aapse best UA-cam muje to koyi b nahi laga coding me but I m sorry to say muje aapke steps follow karne me bahut sare errors aa rahe hai... 100% aapke code ko copy karne ke baad b application work nahi kar raha
Firebase auth wala video me hai error after doing SHA-1 still getting error as ur app is not authorised tried many tricks but got resolved after change code method with GitHub
For App Development:
Whatsapp: wa.me/+923060000606
Instagram: instagram.com/coding_with...
Twitter: twitter.com/coding_with_tea/
Facebook: facebook.com/codingwithtea/
Email: developer@taimoorsikander.com
You explain very well. We are always waiting for your next uploads.
Keep teaching like this.
Love from India ❤️
Thank you 😊
Why do we have to enter the details eventually - manually or by using sessions?
Can't it be like we click on '+' button on UserDashboard Screen and the RetailerStartUp Screen with LOGIN and SIGN UP buttons doesn't appear at all if we are already logged into the system and we automatically move to RetailerDashboard Screen.
Why do we have to go through the login process again and again, even if we're not entering the phone and password manually and doing it by sessions, still it is a bit tacky to go through the login page. Why not directly to Dashboard if already logged in?
Buddy! Please check my video on Sessions and in that I have already created a function which is checkLogin() and we will call this function from dashboard + and check if the user is logged in or not! If not then redirect to login.
@@CodingwithT Yeah, but in that case too, we have to go through the RetailerStartUpScreen, because we're only checking for login status using checkLogin() in dashboard which we'll reach only by going through RetailerStartUpScreen. Check this once again!
Thx a lot. You are a good teacher. Love from morocco😇
You Welcome 😊
When this project gonna complete? My last submitting date will coming too soon.
Such a great app 😍..sir can you please tell me how to create such animation videos which you have used at start of this video .
Yes all the links are given below in the description! You can start with city guide app series
Bro, can you make tutorial to user dont always have to log in, user only login when user logout?
Bro I've already created that video please check shared preference of this series
am getting this error msg
error: constructor SessionManager in class SessionManager cannot be applied to given types;
required: Context,String
found: RetailerDashbored
reason: actual and formal argument lists differ in length
public SessionManager(Context _context,String sessionName) {
context = _context;
userSession = context.getSharedPreferences(sessionName, Context.MODE_PRIVATE);
editor = userSession.edit();
this is my class
Please make a video on bottom navigation bar...
I'll do that soon
Please make a video for one time login and the another time display profile activity how to do that? Please reply
Hey bro mind if you explain how can we retrieve item details after clicking the item from firebase
sir how i can logout
and clear both sessions
I've 2 type of users in my application, I want to store their details whoever logged in. I think the process is same as you did in this video. I don't need remember me, instead I just want to store 2 different users data accordingly.
I did exactly what you showed, but in the end only first user's data is storing to shared preference. When the other type of users log in, it' just getting null values.
Well, I've to check your code for that.
I really love your videos I have been looking for a way to build a kind of tour guide all for my state and this designs helped me through..
Pls I followed your tutorials but I couldn't find where you did the search location page, the insertion of details page of single location for the users and for the location owner dashboard u only did signup and login...no dashboard,profile,adding of missing place and managing reviews
Glad I could help! and if you are following the series then you might missed the first overview video as I explained that how will be the flow. So, After this video all the videos will be about dashboard and getting location and managing it etc.
Check it out ua-cam.com/video/lrvmdRW7rzw/v-deo.html
what about the make selection activity
Means? Didn't get you
@@CodingwithT actually you created a activity called "make selection" in which user can select wheather to recieve otp from email or via sms
@@naveendgp91 That is to give an option to the user to choose all the methods our app has to validate the user account. If you have only one way then adding that screen might be not a good approach.
@@CodingwithT okay 👍
How to push update notification for app, which is not in playstore
We can do that using firebase! Will create a video on it soon
Sir sorry . Where the validate fields coding tutorial ? . I watch all the video but could not find one . Sorry sir
Do me WhatsApp
Can you make it to remember user once logged in?
Like once user is logged in and comes back then he/she doesn't have to enter details or even click login button. He/she will be logged in unless user logged out manually?
Using previous video tutorial of sessions you can do that by just calling the function checkLogin() and if it returns true then get all the values stored in session and directly redirects to the Dashboard or profile
@@CodingwithT
Understood.
Thanks for quick replies.
but where to use checklogin() function on splashscreen and how to add if else on it
if(check login() user logged in){
}
else{
}
@@CodingwithT Thanks! I did the thing and all worked out perfectly! Really Thank you Sir I am glad u are on UA-cam!. You are the best teacher in the world
@@WorkOps_IN bro do like this create sessionmanager variable, SessionManager manager = new SessionManager(this);
then,
if(manager.checkLogin){go to home}
else{go to login}
very good bro i appreciated but can you do a video about all (signup) for city guide firebase it will be awsome
How can i contact you...i need little bit advice regarding android application.
Can I know where you get those vector images
Which one?
Images in previous videos
@@CodingwithT the one in splash screen
@@moulichowdary4330 Bro, you can download your own illustrations. Download any illustration from undraw.co/illustrations
You can also change their colors according to your need from that color button at top right corner.
You can search for any illustration also using specific keywords.
The illustration will be downloaded in svg (vector) format which you can directly use in android:src property of ImageView in android.
P.S. : Try to use your own resources instead of asking from others.
Hope that helps!
Taimoor Bhai ek or help chaiye thi aapki....how to make filter like amazon if we click on filter button then fragment appears in which we select the brand name then amazon apk only shows us products of that brand only..
and code for a fragment should appear on a button click and should disappears with the same button click it should appears on first click and should disappears with second click..... third_click(appears) fourth_click(disappear) likewise....
Basically behind that fragment search they are just creating a query to fetch data and show related data to users!
And for the button you can set boolean if true open fragment else close it
Thank you i will try it in my apk
When will the new video come out?
Maybe from tomorrow onward I'll start Retailer dashboard!
Hello sir when I store data in realtime databse it store only phone Number its does not store name date gender or etc why sir ?
plzz help...
Because these all values are null! Make sure that every attribute have something in it
Every attribute has something in it means sir
Which attribute??
Where is your Source Code for this Tutorial , please update it in description :/
Please check on the website
Brother please make video on
Get current location of user like food delivering app
Love from India
❤❤❤❤
In coming videos I'll create that
Will you make series On converting website into app.!
Soon
Bhai, Can you please make a video on IAB ( in app Billings, weekly, monthly, yearly) .
Maybe in this tutorial series
Can I get your code ? or Do u have github link?
🙂
U can get it from the link provided in the description
Can you make videos fir messaging and send requests bro?
Sure! Maybe in this series
@@CodingwithT thank you for your effort
Sir aapka mast work karte ho explain b out standing, aapse best UA-cam muje to koyi b nahi laga coding me but I m sorry to say muje aapke steps follow karne me bahut sare errors aa rahe hai... 100% aapke code ko copy karne ke baad b application work nahi kar raha
Firebase auth wala video me hai error after doing SHA-1 still getting error as ur app is not authorised tried many tricks but got resolved after change code method with GitHub
thanks man your are doing a lot?
Thank you sebo
we need Messaging and Notification with phone number bro , plz
Noted
Please, where is the source code?؟؟؟؟؟؟
Will be available back shortly.
@@CodingwithT Well please hurry up 🙏❤️
Do contact with me on Instagram
How much money you take for an Educational App Review ?
Please reach me at developer@taimoorsikander.com
Thank you
Thanks :)
Sir mene ek question kiya he reply dedo watsapp per sir please
Never store password plaintext in shared preferences
Hii
Hello
Waiting for response