Пікірлер
@ramahsaad5631
@ramahsaad5631 7 күн бұрын
Mine has refused to tick when adding add real-time database to my app
@Goku69762
@Goku69762 13 күн бұрын
itsa great contraint and ui video nothing much on the functionality
@technicalskillz
@technicalskillz 10 күн бұрын
Thanks
@ShrutiSonawane-bm2no
@ShrutiSonawane-bm2no 17 күн бұрын
can u share zip file sir
@technicalskillz
@technicalskillz 17 күн бұрын
Sorry not available
@ShrutiSonawane-bm2no
@ShrutiSonawane-bm2no 16 күн бұрын
@@technicalskillz can u plz send any other one plz sir i request u
@imotaku6951
@imotaku6951 26 күн бұрын
Thank you, i have a request how to change passwaord in Forgot password?
@pranavnagulakonda9359
@pranavnagulakonda9359 Ай бұрын
This update function does not really accomplish anything that the upload button does not. To actually update the data you should be able to update just a single field and leave the other field blank without damaging the database. Here's the code I used to do the same. (the branchname variable was made because I wanted to be able to upload data to different branches whenever I wanted) updateBtn.setOnClickListener(new View.OnClickListener() { @Override public void onClick(View view) { //Getting Data from the user String branchName = branch.getText().toString(); //getting the branch name for the upload String newData = input.getText().toString(); //pulling the data to be uploaded String newID = ID.getText().toString(); //getting the value in the data file //Setting larger level variables so they can be accessed throughout the class after being pulled from the database final String[] id = new String[1]; final String[] data = new String[1]; //Actually getting the data from the database rootDatabaseReference = FirebaseDatabase.getInstance().getReference(); rootDatabaseReference.addValueEventListener(new ValueEventListener() { @Override public void onDataChange(@NonNull DataSnapshot snapshot) { if (snapshot.exists()){ Map<String, Object> map = (Map<String, Object>) snapshot.getValue(); id[0] = (String) map.get("ID"); data[0] = (String) map.get("Data"); } } @Override public void onCancelled(@NonNull DatabaseError error) { } }); //Recreating the old hashmap HashMap hashMap = new HashMap(); //Updating the hashmap only if there's data in the fields and the new data is different from the old data if(!newData.isEmpty()){ if(!newData.equals(data[0])){ hashMap.put("Data", newData); } } if(!newID.isEmpty()){ if(!newID.equals(id[0])){ hashMap.put("ID", newID); } } rootDatabaseReference.child(branchName).updateChildren(hashMap).addOnSuccessListener(new OnSuccessListener() { @Override public void onSuccess(Object o) { Toast.makeText(MainActivity.this, "Successfully uploaded", Toast.LENGTH_SHORT).show(); } }).addOnFailureListener(new OnFailureListener() { @Override public void onFailure(@NonNull Exception e) { Toast.makeText(MainActivity.this, "Not uploaded", Toast.LENGTH_SHORT).show(); } }); } });
@aldinsalihovic2287
@aldinsalihovic2287 Ай бұрын
on my project there is literally nothing underneath app/build.gradle. WHY IS THAT?
@usamazafarofficial
@usamazafarofficial Ай бұрын
how to send friend request?
@user-gf4qu1ki9p
@user-gf4qu1ki9p Ай бұрын
How do you download the Facebook image link and put it in your android studio
@Meile4q4
@Meile4q4 Ай бұрын
24:50 I get an error writing that down. how do i fix it?
@Goku69762
@Goku69762 13 күн бұрын
did u fix it ?
@Meile4q4
@Meile4q4 13 күн бұрын
@@Goku69762 i do, but with different code
@user-ti2xc1op7v
@user-ti2xc1op7v Ай бұрын
would this still work today? the code on the documentation changed?
@leesin8189
@leesin8189 Ай бұрын
Cảm ơn bạn rất nhiều, nhờ có video của bạn mà tôi đã hiểu được một số bước ở giai đoạn đầu khi lập trình android :))
@Olamify
@Olamify Ай бұрын
Which version did you use mine is laggy
@EmmanuelGachomo
@EmmanuelGachomo Ай бұрын
Why do you use the word json after copying the url
@samraarshadsamraarshad2003
@samraarshadsamraarshad2003 2 ай бұрын
Hello sir ais ka xml code mil sakta hai
@user-fm1ec5ie6g
@user-fm1ec5ie6g 2 ай бұрын
thank u so much😊
@technicalskillz
@technicalskillz 2 ай бұрын
Welcome 😊
@aftabtechnical7965
@aftabtechnical7965 3 ай бұрын
This code is crashed the Application
@technicalskillz
@technicalskillz 2 ай бұрын
Check your logcat for error
@user-bd4hv4lx3y
@user-bd4hv4lx3y 3 ай бұрын
In BiometricManager biometricManager = BiometricManger.from(this); is showing error ...how to resolve it ?
@sribabu8358
@sribabu8358 3 ай бұрын
Good video. Thank you very much. I think it is better if we play speed at 0.75. Thanks.
@technicalskillz
@technicalskillz 3 ай бұрын
Thanks
@azamatik3
@azamatik3 3 ай бұрын
what is the music in intro?
@najibullahzirak
@najibullahzirak 3 ай бұрын
How to mark an item to be shown in your favorite ❤, like in English to Urdo dictionary when you search a word after finding it then mark it to favorite, then your choice store or remove.
@jeanpierre1852
@jeanpierre1852 3 ай бұрын
Thank you for this playlist! It helped me having a good start on firebase
@nijatquliyev4856
@nijatquliyev4856 3 ай бұрын
How to download ml kit for object and face detecting with Android studio
@dikiparab5785
@dikiparab5785 4 ай бұрын
Which android studio version is this??
@Issa256
@Issa256 4 ай бұрын
How do I intergrate this to my existing project
@user-yf6yz8rb1x
@user-yf6yz8rb1x 5 ай бұрын
your voice is too small and the ending music is noisy. but video is fantastic
@almasrajpoot8325
@almasrajpoot8325 5 ай бұрын
mj sy yh linear layout wala part nai set hura ap na ksa kia hai
@Kramblueify
@Kramblueify 5 ай бұрын
This really is very good, so thank you for the tutorial. However .... It would have been much more helpful if you included the source code with your tutorials, because it is very laborious having to watch the screen and type in all the code.
@abhisekpattnaik2282
@abhisekpattnaik2282 5 ай бұрын
That is authentication because anyone give random email and they navigation main page please check before the user is verify or not
@MohammedIrfan-td4df
@MohammedIrfan-td4df 5 ай бұрын
Atif .Aslam.new.kawo
@nsovomercy1358
@nsovomercy1358 5 ай бұрын
Hey what if I want to preform a username and not email for the fire base
@technicalskillz
@technicalskillz 5 ай бұрын
username is not working in firebase authentication. if you want csutom ath you need to to se firebase realtime database to make custom auth.
@ishwarbonde6497
@ishwarbonde6497 6 ай бұрын
Hello sir when i signed in with Google then it successfully signed in but at the time of logout the page will automatically created i don't know why i used simply FirebaseAuth.getInstance().signOut() and Intent on login page but my page where the logout button is there is crashing Please help me tell the solution🙏
@LearnerzHub
@LearnerzHub 6 ай бұрын
How to get multiple data from different edittext
@dogu0101
@dogu0101 6 ай бұрын
I can't add a new user to firebase with same method.
@dogu0101
@dogu0101 6 ай бұрын
Like the video but I've a problem. I repeated every step and got into the login screen but after I try to login with a twitter account, it doesn't sign in. What can be the problem ?
@egbunumalikdavid2415
@egbunumalikdavid2415 6 ай бұрын
I tried to run the app but it is displaying the following error (Caused by: org.gradle.api.internal.artifacts.ivyservice.DefaultLenientConfiguration$ArtifactResolveException: Could not resolve all files for configuration ':app:debugRuntimeClasspath'.)
@technicalskillz
@technicalskillz 6 ай бұрын
Toggle Offline Mode.
@egbunumalikdavid2415
@egbunumalikdavid2415 6 ай бұрын
Thanks @@technicalskillz
@user-hi5xm5ii4s
@user-hi5xm5ii4s 6 ай бұрын
thank you so much for the lessons! With their help, I did what I couldn’t do for a long time. Please tell me how to send objects to the server via a json channel? You showed how to receive data and how to send entire objects. Thank you again
@venusvelazquez1831
@venusvelazquez1831 6 ай бұрын
Not work nothing have a lots the mistakes
@technicalskillz
@technicalskillz 6 ай бұрын
What is error ?
@ApoorvPandeyDev
@ApoorvPandeyDev 7 ай бұрын
Only works when the app is in foreground
@rimshabutt7767
@rimshabutt7767 7 ай бұрын
Amazing 🎉
@technicalskillz
@technicalskillz 6 ай бұрын
Thanks 😄
@barnabasm7570
@barnabasm7570 7 ай бұрын
hello sir, the setTitle prompt is not working in this latest version of andriod studio . could u please help,its really necessary for me
@technicalskillz
@technicalskillz 7 ай бұрын
No Its working even latest version .Where yo got error ?
@Bek-hc4xy
@Bek-hc4xy 7 ай бұрын
Hi. Thank you very much! I was having this problem and tried to do a lot of things. Problems was that my emulator didnt have google play store in it lol.
@technicalskillz
@technicalskillz 7 ай бұрын
Glad I could help
@rexnixon
@rexnixon 7 ай бұрын
Straightforward and very helpful. Thank you!
@technicalskillz
@technicalskillz 7 ай бұрын
Glad it was helpful!
@sporty_hub69
@sporty_hub69 7 ай бұрын
but how to store those fingerprint's in database?
@technicalskillz
@technicalskillz 7 ай бұрын
we cant save fingerprint in database. Aandroid not allowed. We can only save and compare fingerprint with android devive
@sporty_hub69
@sporty_hub69 7 ай бұрын
@@technicalskillz but I've to check if the given fingerprint matches with my saved fingerprint or not... my system will be like a system where a person can be able to enter a room or do anything if his fingerprint matches with his initial fingerprint which was saved in database...so clearly I will not database to store those fingerprint....can u help me to do so? I'm waiting for your reply ..
@technicalskillz
@technicalskillz 7 ай бұрын
We cant save fingerprint in database in any case bcz of android secrity.Yes we can match fingerpint with registered finger print of devices mean if a person already created fingerpint in lock of android device then we can match that finger print ( in this case we can compare and do anything.If yo want second case yes its possible.
@vinusha3198
@vinusha3198 8 ай бұрын
How to do this using navigation component
@orangepulp9354
@orangepulp9354 8 ай бұрын
This helps a lot for my project and pls can I have the source code ty new sub here
@roopkishore785
@roopkishore785 8 ай бұрын
Your videos voice quality is totally bullshit, trying to listen in earphones, ....intro voice is too loud, ....have to low down the volume,.....but later your sound is quite low, have to increase the volume...felt like it'll burst my ears... dislike for this.
@rithwikganesh8729
@rithwikganesh8729 8 ай бұрын
bro what about Forgot Password
@technicalskillz
@technicalskillz 8 ай бұрын
Soon add another video
@akshatkant1423
@akshatkant1423 8 ай бұрын
in android how do we learn so complex code. i mean it doesnt look like what we do normally for example the line of code where we needed to remove the support action bar. How do you know what and all to write to make that happen and how can i do android to be achieving that level of expertise.
@technicalskillz
@technicalskillz 8 ай бұрын
Learn from basic and do practice, create small project.Everytime yo know soemthing new.
@user-tp1vk5lq4d
@user-tp1vk5lq4d 8 ай бұрын
thanks you man much
@technicalskillz
@technicalskillz 8 ай бұрын
Happy to help
@sancrosanct5070
@sancrosanct5070 8 ай бұрын
Dude. Its been 3 years since you made this video but its helping me learn App development right now. You sir are a legend. Are you going to make a more recent tutorial?
@technicalskillz
@technicalskillz 8 ай бұрын
Yes Soon I am making new series for 2024.I will inclde baisc to advance featres.
@kewlbud8868
@kewlbud8868 12 күн бұрын
Can't wait for the new series! Not only has these older videos helped me, but trying to figure out stuff from the updated software by just messing around and figuring things out has actually help me remember alot and helped me learn.