hello sir i want 1 help me android app madhe webview ghetala ahe but je maze notification website var show hotat tya notification app madhe show hot nahi why sir kahi permission cha issue ahe ka please help me
@@Codetutor-DemystifyCoding Hello sir I have taken a webview in android app but the notification is not coming in that webview but my website is getting notifications is there any solution. Do you have to give some permissions in the app?
Hello sir I have taken a webview in android app but the notification is not coming in that webview but my website is getting notifications is there any solution. Do you have to give some permissions in the app?
May be the browser engine is not rendering the notification properly in mobile. Ideally it should work. Have you tried debugging the web view in Android.
@@Codetutor-DemystifyCoding But when i open the browser that time notification show Properly but when i open the webview app that time i cant show notification yes i debug the app what was the actual issue found in that case how was i resolve it any permission required in the manifesto file
val personList = mutableListOf() for(p in 1..5){ Person("name_$p",p).also { personList.add(it) } } val updatedPerson = personList.map { it.name = "gautam" it } println("updatedPerson is => $updatedPerson") /* * map will change the entire list since list is mutable * */ println("personList is => $personList") So here at the last line personList is getting changed. in the video you told that map will not change the original list but in my case it is getting change, can you please clear it? Thanks in advance.
sir i like the video and give beautiful example for understanding thanks
Glad you liked it!
Anil deshapande ... Better than European and American tutors
Thanks for the kind words. Feel free to explore other content on the channel. Hope you have subscribed.
Sir, thanks for the videos... Please upload atleast one video in a week .
hello sir i want 1 help me android app madhe webview ghetala ahe but je maze notification website var show hotat tya notification app madhe show hot nahi why sir kahi permission cha issue ahe ka please help me
Sorry to disappoint you, but I don't know Marathi that well 😟. Mala Marathi aith nahi
@@Codetutor-DemystifyCoding Hello sir I have taken a webview in android app but the notification is not coming in that webview but my website is getting notifications is there any solution. Do you have to give some permissions in the app?
Hello sir I have taken a webview in android app but the notification is not coming in that webview but my website is getting notifications is there any solution. Do you have to give some permissions in the app?
@Codetutor i am waiting for your reply sir
May be the browser engine is not rendering the notification properly in mobile. Ideally it should work. Have you tried debugging the web view in Android.
@@Codetutor-DemystifyCoding But when i open the browser that time notification show Properly but when i open the webview app that time i cant show notification yes i debug the app what was the actual issue found in that case how was i resolve it any permission required in the manifesto file
val personList = mutableListOf()
for(p in 1..5){
Person("name_$p",p).also {
personList.add(it)
}
}
val updatedPerson = personList.map {
it.name = "gautam"
it
}
println("updatedPerson is => $updatedPerson")
/*
* map will change the entire list since list is mutable
* */
println("personList is => $personList")
So here at the last line personList is getting changed. in the video you told that map will not change the original list but in my case it is getting change, can you please clear it? Thanks in advance.