Related
FEATURED by Whatsapp Support Page
Hi everyone,
Are you experiencing delayed push notifications from GTalk/Hangouts, GMail, Whatsapp (partial fix), Facebook, Play Store web install, etc? If so, then this app its for you!!
It's FREE! No banners. No ads. Please consider donating to the developer (link in the app).
This app work for EVERY phone. ROOT is NOT required
Root version here: http://forum.xda-developers.com/showthread.php?t=2142503
This app basically keep alive the push connection on your phone. It avoid the tcp connection timeout that can occurs on some wifi routers or on some mobile carriers.
You will always receive instantly push notifications.
● Why were my notifications delayed in the first place?
Apps using Google's push service (Hangouts, Gmail, Facebook Messenger, e.g.) connect your phone to Google’s servers via one TCP connection (on port 5228).
To keep this connection alive, Android uses a periodic heartbeat to prevent the connection from timing out. By default, this heartbeat occurs every 15 minutes on wifi and every 28 minutes on a mobile data connection.
This is problematic because most Wi-Fi routers and mobile carriers will automatically terminate this connection after a short time of inactivity.
Because your phone is not aware that this connection was externally closed, you will not receive push notifications until this connection is reestablished when the next heartbeat is sent.
● How does PNF solve this problem?
Every x minutes it invoke an android activity that will send an heartbeat network packet on the push connection. Sending an heartbeat every 5 minutes should be enough to always keep the connection alive and all your push notifications will be instantly.
The battery should not be much impacted over a day.
Download here: PLAY STORE LINK (or get the attached APK in case not available on your country for some reason)
Please, if the are problems don't rate bad, send me an email ( [email protected] ) or post the problem in this thread and I'll answer you as soon as possible.
Feedback are welcome!
Changelog:
See post Number 2
FAQ:
See post Number 3
Report to google here: https://productforums.google.com/fo...onnecting-to-networks-and-devices/fslYqYrULto
Download it from play store to receive future app updates
Changelog:
Version 2.5, 2016/09/10:
- Small update. Soon new things!
Version 2.0, 2015/06/30:
- Fix PNF auto-startup after phone reboot
Version 1.5, 2015/01/04:
- Material design for android lollipop
Version 1.1, 2014/03/06:
- Fix app not autostart at network changes on some phone
- The app start at phone boot itself, no need to start it or do anything
Version 1.0, 2013/11/05 :
- First release
FAQ
Q: Does this app drain battery in background? Does lowering the heartbeat interval too much cause more battery drain?
A: It should have not a big impact on the battery during your daily use. I recommend hearbeat set to 5 minutes, it should be enough to make you receive instantly notifications.
Q: What does mean "set the heartbeat to x minutes" ?
A: It means only that android will send a network packet over the push connection every x minutes instead of the default 15/28 minutes to keep alive that connection. It does NOT mean that you receive push notification every x minutes. Notifications are instantly if the push connection is alive.
Q: Why Whatsapp messages are still delayed sometimes?
A: Whatsapp, and some others apps, don't completely rely on google push service (GCM). Those apps start their own connection when you open the application, and the messages come through this connection. The heartbeat is sent by android only on the push connection on the port 5228, and so it only keep-alive that particular connection. Blame those apps that doesn't have a keep-alive mechanism for their connection or that doesn't use full push messaging.
A workaround for whatsapp is to swipe it away from the recent apps when your finished a chat session. In this way it's connection is dropped and you will be notified of new messages through google push notifications.
I start seeing some download, but few stars.. Come on show your gratification with 5 stars
Inviato dal mio Galaxy Nexus utilizzando Tapatalk
How?
Hi, Im using your application, the root one.
But I'm interested in how this one works.
I recently developed an app that use GCM to send messages between devices.
If you can answer me... How do you send the heartbeat through an Activity? This can help a lot of people since Google don't do anything.
Thank you
Hitsbam said:
Hi, Im using your application, the root one.
But I'm interested in how this one works.
I recently developed an app that use GCM to send messages between devices.
If you can answer me... How do you send the heartbeat through an Activity? This can help a lot of people since Google don't do anything.
Thank you
Click to expand...
Click to collapse
Basically to trigger an heartbeat you only need those 2 lines (those are undocumented, I it discovered by decompiling GSF):
Code:
context.sendBroadcast(new Intent("com.google.android.intent.action.GTALK_HEARTBEAT"));
context.sendBroadcast(new Intent("com.google.android.intent.action.MCS_HEARTBEAT"));
where context is the application context.
Those intents will be "catched" by GoogleServicesFramework (GSF) that will physically send the heartbeat packet to the google servers. If an aswer come back instantly the push connection is alive, otherwise if in 60 seconds there is no answer back, GSF will initiate a new push connection without to wait the next heartbeat.
The first intent is for Ice Cream Sandwhich and below "I think", while the second one is used in new android versions, should depend from the GSF version installed..But you can safety fire both, since one of the two won't just do anything.
Not sure if it is a good practice to place it inside an application, since if every developer will do that the battery will be killed. Maybe you can invoke that only in some situations.
andQlimax said:
Basically to trigger an heartbeat you only need those 2 lines:
Code:
context.sendBroadcast(new Intent("com.google.android.intent.action.GTALK_HEARTBEAT"));
context.sendBroadcast(new Intent("com.google.android.intent.action.MCS_HEARTBEAT"));
where context is the application context.
Those intents will be "catched" by GoogleServicesFramework (GSF) that will physically send the heartbeat packet to the google servers. If an aswer come back instantly the push connection is alive, otherwise if in 60 seconds there is no answer back, GSF will initiate a new push connection.
The first intent is for Ice Cream Sandwhich and below "I think", while the second one is used in new android versions, should depend from the GSF version installed..But you can safety fire both, since one of the two won't just do anything.
Not sure if it is a good practice to place it inside an application, since if every developer will do that the battery will be killed. Maybe you can invoke that only in some situations.
Click to expand...
Click to collapse
Thanks a lot.
Your right, if every developer use it then can turn in to a problem.
I'm not going to use it, only in the start of the app if the users reports me problems. But first i'm going to suggest your application, i think is a better solution by the moment :good:.
Thanks for satisfy my curiosity.
PNF root reached 50.000+ downloads!
PNF no-root need more advertising..Share it to people may need this app and give 5 stars!
Great app :good:
I'm new with android. How can I swipe whatsapp away from the recent apps in settings when I finished a chat session?
Thanks in advance
lefty68 said:
Great app :good:
I'm new with android. How can I swipe whatsapp away from the recent apps in settings when I finished a chat session?
Thanks in advance
Click to expand...
Click to collapse
Depends from your phone I think, just launch the recent apps list and remove / swype whatsapp from there..
On the Nexus phones there is a dedicated on screen button to open the recent app list, on some Samsung phone I think you can long press the home button.
Inviato dal mio Galaxy Nexus utilizzando Tapatalk
andQlimax said:
Depends from your phone I think, just launch the recent apps list and remove / swype whatsapp from there..
On the Nexus phones there is a dedicated on screen button to open the recent app list, on some Samsung phone I think you can long press the home button.
Inviato dal mio Galaxy Nexus utilizzando Tapatalk
Click to expand...
Click to collapse
On Huawei g300 phone I can long press the home button to open the recent app list too, but it seems like in android 2.3.6 I can't swipe apps away. Any alternative action?
andQlimax said:
Basically to trigger an heartbeat you only need those 2 lines (those are undocumented, I it discovered by decompiling GSF):
Code:
context.sendBroadcast(new Intent("com.google.android.intent.action.GTALK_HEARTBEAT"));
context.sendBroadcast(new Intent("com.google.android.intent.action.MCS_HEARTBEAT"));
Click to expand...
Click to collapse
Hi, I'am using the same method in my product.
Can we reach an agreement how to reduce the frequency of these intent calls?
I have no idea to realize any heartbeat timeout settings in my app (hard policy).
I can't listen for these intents cause it requires com.google.android.c2dm.permission.SEND permission that can't be acquired.
For example, can you send some additional broadcast intent (w/o permissions) when fire heartbeat?
I'll listen for it and reset own alarms to not to do the same action.
dd00_xda said:
Hi, I'am using the same method in my product.
Can we reach an agreement how to reduce the frequency of these intent calls?
I have no idea to realize any heartbeat timeout settings in my app (hard policy).
I can't listen for these intents cause it requires com.google.android.c2dm.permission.SEND permission that can't be acquired.
For example, can you send some additional broadcast intent (w/o permissions) when fire heartbeat?
I'll listen for it and reset own alarms to not to do the same action.
Click to expand...
Click to collapse
I have to check, there is an other intent directly fired by android which indicate that an heartbeat has been sent, you can listen that intent I think
I don't remember it right now what, I will check tomorrow maybe and will let you know
dd00_xda said:
Hi, I'am using the same method in my product.
Can we reach an agreement how to reduce the frequency of these intent calls?
I have no idea to realize any heartbeat timeout settings in my app (hard policy).
I can't listen for these intents cause it requires com.google.android.c2dm.permission.SEND permission that can't be acquired.
For example, can you send some additional broadcast intent (w/o permissions) when fire heartbeat?
I'll listen for it and reset own alarms to not to do the same action.
Click to expand...
Click to collapse
@dd00_xda
It seems there isn't an android system intent that you can listen to check if an heartbeat has been sent.
About your request to send some broadcast intent in my app, what will be the advantage for you? I mean, if you already need my app installed, then you don't need at all your own alarm..My app by default send and heartbeat every 5 minutes for example (the alarm will start every time a connection is made) and in that way the push connection is already alive..and every notification you app need to listen, it will always being received
Thanks very much for creating this app! I have a question about it.
I previously had a Samsung Galaxy S3 running Android 4.1.2. Push notifications worked fine over Wi-Fi when I was at home.
I have now switched to a Nexus 5 running Android 4.4. I'm still using the same router at home, but I'm getting an issue with notifications being delayed. Sometimes I will not get any notifications for a while, then a bunch will turn up at once from different apps.
Does the issue I've described sound like it's related to the problem that this app is designed to fix? If so, how come everything worked fine with my S3 with the same router?
Many thanks!
funksoulbrother said:
Thanks very much for creating this app! I have a question about it.
I previously had a Samsung Galaxy S3 running Android 4.1.2. Push notifications worked fine over Wi-Fi when I was at home.
I have now switched to a Nexus 5 running Android 4.4. I'm still using the same router at home, but I'm getting an issue with notifications being delayed. Sometimes I will not get any notifications for a while, then a bunch will turn up at once from different apps.
Does the issue I've described sound like it's related to the problem that this app is designed to fix? If so, how come everything worked fine with my S3 with the same router?
Many thanks!
Click to expand...
Click to collapse
maybe the issue is that the device loose the network while the screen is off? that's a common problem on some device, it is not fixed by PNF
andQlimax said:
maybe the issue is that the device loose the network while the screen is off? that's a common problem on some device, it is not fixed by PNF
Click to expand...
Click to collapse
Thanks for the reply!
Do you have any recommendations of how I could troubleshoot this issue? I really don't know what the cause is - I just know it happens, and if it was a widespread issue with the Nexus 5 then a lot more people would be talking about this issue. I've only seen a handful of folks mentioning it.
Thanks again.
funksoulbrother said:
Thanks for the reply!
Do you have any recommendations of how I could troubleshoot this issue? I really don't know what the cause is - I just know it happens, and if it was a widespread issue with the Nexus 5 then a lot more people would be talking about this issue. I've only seen a handful of folks mentioning it.
Thanks again.
Click to expand...
Click to collapse
if the phone disconnect from the wifi while the screen is off (happen also with only some routers sometimes), you usually should see the phone reconnect as soon as you wake the screen..if you pull down the notification bar and open the toggle switch, you should see the wifi icon orange (no connection to google server) and in few seconds become white again (connected).
andQlimax said:
if the phone disconnect from the wifi while the screen is off (happen also with only some routers sometimes), you usually should see the phone reconnect as soon as you wake the screen..if you pull down the notification bar and open the toggle switch, you should see the wifi icon orange (no connection to google server) and in few seconds become white again (connected).
Click to expand...
Click to collapse
Thanks again.
I don't believe the Wi-Fi is disconnecting. I can ping the device when the screen has been off for ages and notifications do come in when the screen is off - they're just delayed and sometimes I don't get a notification at all, yet I'll get an email notification on my PC.
funksoulbrother said:
Thanks again.
I don't believe the Wi-Fi is disconnecting. I can ping the device when the screen has been off for ages and notifications do come in when the screen is off - they're just delayed and sometimes I don't get a notification at all, yet I'll get an email notification on my PC.
Click to expand...
Click to collapse
that's strange...anyway my nexus 5 is arriving, I will do some tests and see if PNF is working correctly on KitKat
[Q] Wifi & network location unavailable after switching location off & on again
Hi there,
I found this strange but reproduceable bug on my N5's location services and was wondering if it's the same for you.
Turn off location via settings or quick settings
Turn it back on
You'll be asked to accept Google location terms
Switch to battery saving mode (only wifi & network, no GPS)
After these steps, my N5 cannot find it's location via Wifi & mobile network anymore. In Maps it might still show the blue dot but moving around it won't update. When using any other app which will try to get a fresh location it's a no go. Like Google+, try and make a post with location, no joy.
I have to reboot to get it working again.
Did you agree to those Google terms? If not that's the reason...
cawith said:
Did you agree to those Google terms? If not that's the reason...
Click to expand...
Click to collapse
I agreed to those of course. If you cancel that it will turn back to device (GPS) only
Sander M said:
I agreed to those of course. If you cancel that it will turn back to device (GPS) only
Click to expand...
Click to collapse
Strange. Are you running stock ROM? I had no problem doing the thing you described.
cawith said:
Strange. Are you running stock ROM? I had no problem doing the thing you described.
Click to expand...
Click to collapse
Just got it 2 weeks ago, all is stock, locked and original.
Did you try any other app besides Maps? That sometimes uses last known location and shows blue icon.
Sander M said:
Just got it 2 weeks ago, all is stock, locked and original.
Did you try any other app besides Maps? That sometimes uses last known location and shows blue icon.
Click to expand...
Click to collapse
You're right, mine also won't find my position without GPS. However a reboot fixes it for me.
Somewhat glad to see others having this bug too. Indeed a reboot fixes it right up so it's not a huge deal.
Under normal circumstances I would't change this setting ever, but when I just got my N5 I wanted to test the GPS only feature. After turning it back to Battery saver I noticed and started investigating what caused it.
Thanks for testing mate!
Sander M said:
Somewhat glad to see others having this bug too. Indeed a reboot fixes it right up so it's not a huge deal.
Under normal circumstances I would't change this setting ever, but when I just got my N5 I wanted to test the GPS only feature. After turning it back to Battery saver I noticed and started investigating what caused it.
Thanks for testing mate!
Click to expand...
Click to collapse
No problem. I'm glad also to be aware of it now, so that I can avoid standing somewhere I need and it won't find it
Anyone else willing to try this? The N5 from a friend of mine did not show this behavior. And another did. Weird bug.
Verstuurd vanaf mijn Nexus 5 met Tapatalk
I have the problem on my 16 GB black nexus 5 with stock Rom and no root. I tested with dalvik and art but the problem exist. I have found 3 solutions:
1- reboot phone (temporary solution)
2- stop Google Play Services (temporary solution)
3- uninstall updates of Google Play Services use with stock/no update (permanent solution)
one more thing; when I can't get a location fix with network/wireless GPS mode on Google Maps or any other application, I can see a circle on " Yandex Navigation" that shows my location.
but more interesting thing is I can see a circle that shows my location on Yandex Navigation when my GPS is completely off.
I think this problem is about Google Play Services or Google Location Services. I hope someone find a solution.
ymeksur said:
I have the problem on my 16 GB black nexus 5 with stock Rom and no root. I tested with dalvik and art but the problem exist. I have found 3 solutions:
1- reboot phone (temporary solution)
2- stop Google Play Services (temporary solution)
3- uninstall updates of Google Play Services use with stock/no update (permanent solution)
one more thing; when I can't get a location fix with network/wireless GPS mode on Google Maps or any other application, I can see a circle on " Yandex Navigation" that shows my location.
but more interesting thing is I can see a circle that shows my location on Yandex Navigation when my GPS is completely off.
I think this problem is about Google Play Services or Google Location Services. I hope someone find a solution.
Click to expand...
Click to collapse
Thanks for your (rigorous :good tests.
Reboot was the one I used to fix it, didn't know about the others you found.
In a strange way glad to see it's a software bug, which means it's fixable. I guess the friend I mentioned has not updated the Play services ever, that would explain why he is not affected.
happens to me as well on a Nexus 7 (2013). I've found that battery drains faster even when in deep sleep
Me and my colleague also have this issue...
Completely wiped and factory reset to stock, same prob.
Reboot solves it until you turn location services off and on again, or go from "device only" mode to "battery saving".
A quicker way then reboot (reboot actually does the same as this step) is go to settings, apps, running, Google Services (you might have 2), there STOP the GoogleLocationService (it will stop and reload the service)
Location should work again in battery saving mode...
Thanks for that one Foggy79!
Reboot or restarting the google play services takes much longer (especially when you have to disable ADM first) then your trick of only stopping the only location service.
Verstuurd vanaf mijn Nexus 5 met Tapatalk
Sander M said:
Thanks for that one Foggy79!
Reboot or restarting the google play services takes much longer (especially when you have to disable ADM first) then your trick of only stopping the only location service.
Verstuurd vanaf mijn Nexus 5 met Tapatalk
Click to expand...
Click to collapse
No problem.
I just reproduced the issue on an other colleague's N5, that makes 3 ppl here in the office, can't be coincidence.
If the GoogleLocationService could restart automatically when you turn on "Location" and agree the terms, that would be great...
Foggy79 said:
No problem.
I just reproduced the issue on an other colleague's N5, that makes 3 ppl here in the office, can't be coincidence.
If the GoogleLocationService could restart automatically when you turn on "Location" and agree the terms, that would be great...
Click to expand...
Click to collapse
It appears the issue is fixed for me.
I have Google Play services 4.3.24 so it might be fixed behind our backs.
Now when you turn the location off and on again, the GoogleLocationService is automaticly restarted also
Fixed for me as well with the new Google Play Services!
The new version now indeed restarts the LocationService again.
I'm glad Google also reads XDA (j/k)
Now if they can get GoogleLocationsManager and NlpLocationsReciever to stop running when Locations Services are turned off completely, that'd be great.
Sent from my Nexus 5 using Tapatalk
I have a Pixel 2 64 GB, and I've been seeing astounding battery drain by Google Play Services lately (I believe it started with the November OTA update, but I can't be 100% sure). Some days are worse than others, and on those days Play Services will be responsible for 30% or more of the battery usage. I haven't been able to pin down when it happens, other than that disabling location services doesn't seem to affect it. Deleting data for Google Play Services as well as the Google app, and rebooting the phone, seems to fix the issue for a day or two (during which I'll get fantastic battery life), but then it comes back.
Are there any other fixes I could try? Anyone experiencing similar issues?
Try turning off wifi and Bluetooth scanning.
gm007 said:
Try turning off wifi and Bluetooth scanning.
Click to expand...
Click to collapse
Thanks! Bluetooth is off, but wifi scanning was turned on. I'll report back here if I see any effect at all.
I'm having the same issue. Factory reset didn't resolve the issue. Giving the scanning off a try.
Same here... does not have a pixel phone but latest oneplus. google play service goes to nearly 30 % in GSAM monitor. I have searched in web and someone says that google updates play service in the background in the last days. and many, many users are talking about massive battery drain because of google play service.
What can we do?
PS: Wifi seraching is off, bluetooth, too... no difference!!
Same here - 50 % battery drain.
Same here, tried a factory reset twice and still got the same thing.
Hi, OP here again. So, yesterday, with Wi-Fi Scanning turned off, Play Services seemed to behave well on my phone—ended up with about 3% of total battery usage at the end of the day (~ 15 hours). Hopefully it goes just as well today.
Is turning off WiFi scanning the Settings > WiFi > WiFi Preferences and the three options..
-Turn on WiFi automatically
-Connect to Open Networks
-Open Network Notifications
Or is that something else?
Today my Google Play Services ballooned back up to > 20% usage
foghorn67 said:
Is turning off WiFi scanning the Settings > WiFi > WiFi Preferences and the three options..
-Turn on WiFi automatically
-Connect to Open Networks
-Open Network Notifications
Or is that something else?
Click to expand...
Click to collapse
It's in location settings.
Dropping by to say that I am experiencing the same thing, only when I have wifi turned on. I'm fairly confident that it's caused by wifi.
junkimchi said:
Dropping by to say that I am experiencing the same thing, only when I have wifi turned on. I'm fairly confident that it's caused by wifi.
Click to expand...
Click to collapse
It's not wifi, it's all sync activity that happen when connected to wifi,like Google backup and photo backup...
Whats funny is that while having problems with Play Services on my Pixel 2, my Pixel XL 2016 has been a champ. Until I re-activated it as a phone on Project Fi, now Play Services is starting to go beserk. Not sure if it just needed a few moments, or if this is an all day thing that will just follow me around no matter what phone I use.
...
Dropping by AGAIN to confirm that its happening with these conditions:
- The drain never happens when I'm off wifi
- Drain stops when I reboot the phone
- After I reboot the phone I can get on wifi without drain
- When I connect the charger to the phone while on wifi it starts the Google Play Services drain again
I've tested this sequence for almost a whole week now and I'm fairly confident in my findings, I do this type of **** for a living. Try it yourselves.
junkimchi said:
Dropping by AGAIN to confirm that its happening with these conditions:
- The drain never happens when I'm off wifi
- Drain stops when I reboot the phone
- After I reboot the phone I can get on wifi without drain
- When I connect the charger to the phone while on wifi it starts the Google Play Services drain again
I've tested this sequence for almost a whole week now and I'm fairly confident in my findings, I do this type of **** for a living. Try it yourselves.
Click to expand...
Click to collapse
Are you on Project Fi?
I am, so I called them and asked for escalation and told them it follows me on my 2016 Pixel XL and factory resets don't do anything. They asked for a bug report so they could send it to the engineers. Hopefully they will get back to me.
Google Play Services is still API 23 here.
It should be updated to API 26 for Oreo users and API 27 for Oreo 8.1 DP users.......
Sent from my Pixel 2
thesebastian said:
Google Play Services is still API 23 here.
It should be updated to API 26 for Oreo users and API 27 for Oreo 8.1 DP users.......
Sent from my Pixel 2
Click to expand...
Click to collapse
I don't know what this means.....
Anyway, my issues seemed to have vanished. I'm finally experiencing all that excellent battery life people have been talking about.
I don't know if it's something Google did on their end that is now changed, or if it's the following:
-On my Google Now feed, there was a ton of stuff checked in the "you showed interest" section. Every NFL team, several political figures, a few movie franchises, and it kept going. It was like 5 minutes of unchecking stuff.
-I uninstalled Pandora. Even without firing up the app after a boot, it was causing issues.
I've had play services randomly draining battery with no real understanding why. I did toggle off its background activity and haven't had it since
I am using Samsung S7 on Android 7.0. This has been a problem bugging me for ages and I decided to try find a solution for it.
TLDR: Delayed notifications. Turned off battery optimisation but still delayed. how?
Mainly the delayed notifications are for Facebook and Instagram. So most of the time, I am on Wifi connection. When I step out of the wifi zone and goes into 3G/4G data, I start receiving the notifications. Or at times, it takes long even at the same wifi location that I received the notifications. Example what JUST happened was Instagram notification appear that took place last night at 11PM (when it's already 11AM now, 12 hours later).
I Google for solutions and what I saw was to turn off battery optimisation for those apps. I did, but same. I am not using any apps that kills process or any battery saving apps. I am however using AdGuard and have flitering mode set to "Current: Local VPN". (To connect via a local VPN to do ads blocking.) Not sure if that's the issue. Nonetheless, I did set AdGuard to even not filter data for Facebook and Instagram app, but same issue. So I felt it might not be AdGuard.
Any suggestions?
Thanks in advance!
Someone on Reddit figured out how to enable RCS on any Android phone on any carrier!
https://www.reddit.com/r/UniversalP...a2v8r?utm_medium=android_app&utm_source=share
You'll need an app called Activity Launcher: https://play.google.com/store/apps/details?id=de.szalkowski.activitylauncher
I suggest you turn off WiFi before setup
Steps:
1.) Enroll in Messages Beta and install
2.) Download Activity Launcher
3.) Clear the data of 'Carrier Services' and force stop 'Android Messages.'
4.) Open Activity Launcher
5.) Tap 'Recent Activities,' and in the menu choose 'All Activities.'
6.) Look for 'Messages'
7.) Tap it, then scroll until you find 'Set RCS Flags'
8.) After pressing it select 'ACS Url"' and in the menu select 'http://rcs-acs-prod-us.sandbox google.com/.'
9.) Select OTP Pattern, and in the menu click, YourlsMessenger\sverification\scode\sis\sG-(\d {6}).
10.) Click Apply
11.) Follow setup in Messages. Will take around three minutes.
Step 9 doesn't save in the OTP area. Not sure if that's important but messages was able to enable the advanced feature for messaging over wifi, read receipts, typing notifications etc. Now if I can just find someone else with the feature to text with lol.
Set it up on my 4 xl, and my girlfriend's 4. Left wifi on the whole time. It took me a couple of tries to get it to work. It was easier on my girlfriend's phone. For me, I had to turn on airplane mode with WiFi on
SinisterXReaper said:
Set it up on my 4 xl, and my girlfriend's 4. Left wifi on the whole time. It took me a couple of tries to get it to work. It was easier on my girlfriend's phone. For me, I had to turn on airplane mode with WiFi on
Click to expand...
Click to collapse
I set it up on my wife's Note 8 and even though it activated we couldn't see typing notifications for each other and her texts wouldn't come through. Working fine on my phone though.
What is the benefit of rcs over sms?
wgrant said:
Step 9 doesn't save in the OTP area. Not sure if that's important but messages was able to enable the advanced feature for messaging over wifi, read receipts, typing notifications etc. Now if I can just find someone else with the feature to text with lol.
Click to expand...
Click to collapse
Text me! I'm dying to try it! Dm for number
Group text?
I'm down. Nobody I know has RCS and I want to see how it works
Worked great! I'll try it tomorrow.
I wonder if it'll show on iMessage when I read things and what not. Guess I'll find out soon
Seems to be activated on my 4xl. Will try my wife's phone and then play around tomorrow.
is RCS supposed to work with other RCS users over-seas?
if so can someone PM me their number and see if it actually works
I can't verify my number. How to fix that
my pixel 3xl is eternal activation
I've tried it with my Coral, not working. I may try it this evening again, as well as on my Taimen, and see if either one works.
From Coral, with Tapatalk
I got mine to work and shows the additional chat features. After enabling, the only way I could get it to work is by going into a specific persons contact and toggling on/off the "only send SMS/mms " option. It then worked for me. It will revert back to standard after a bit but if I toggle that option again RCS comes back.
Don't know if this will help anyone else. Don't k ow how to get it to stick permanently
Anyone notice carrier service using more battery?
virtyx said:
Anyone notice carrier service using more battery?
Click to expand...
Click to collapse
Yes. Overnight it drained more than usual. I rebooted and it looks like it settled down. I wonder if there is a way to undo what we did.
bobby janow said:
Yes. Overnight it drained more than usual. I rebooted and it looks like it settled down. I wonder if there is a way to undo what we did.
Click to expand...
Click to collapse
Mine also looks like it settled after a restart
I'll see how it looks overnight
Clearing cache and data for messages and carrier service should revert it back
I've done this on several pixels 1,2,3a,4xl, sgs8 and two LG G6s... Working great on all (all at&t)
Sent from my Pixel 4 XL using XDA Labs
I have this working on two devices and after some testing I have to say unfortunately it is not working enough for day to day use. The RCS communication does work between the two devices if you are actively having a conversation but if you set them down and then try to message one the message will say sent but not be received on the other device until you pick up the other device and send a message to the sending device, then the message will come through and RCS will be working. Basically it works but it is not working to push the message through when not active. I re-tested using sms and all was good. Anyone else experience this?