<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Wrong time + greyed out time options (Bravia 2015 Android TV) in Android TV</title>
    <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/3693605#M46325</link>
    <description>&lt;P&gt;Guys,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I saw lot of people facing this problem and using the adb mode fixes it. However as people mentioned that the issue returns back after the TV is restarted (partially true) , I have scripted the option 4 as mentioned in my post to avoid performing all the steps again and again. And I would love to share the same with you all who are facing this problem. AGAIN SONY MSUT DO SOMETHING ABOUT IT AND IT SUCKS TO USE THIS WORKAROUND EVERYDAY I SWITCH THE TV ON (To me issue is not seen, if I have fixed the time and switched off and on the tv same day).&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Prerequisites To use this workaround:&lt;/P&gt;&lt;P&gt;+ Using option 4 after you have enabled the developer mode and connected your laptop via usb cable to the TV.&lt;/P&gt;&lt;P&gt;+ enable the adb mode via wifi instead of using usb-cable via:&lt;/P&gt;&lt;P&gt;adb tcpip 5555&lt;/P&gt;&lt;P&gt;Detailed explanation given in below link:&lt;/P&gt;&lt;P&gt;&lt;A href="https://developer.android.com/studio/command-line/adb" target="_blank"&gt;https://developer.android.com/studio/command-line/adb&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;+ You should have a terminal that can run a bash script. (MAC users can use Terminal&amp;nbsp; or Windows users can use Ubuntu-app from Windows store or some terminal emulator (mobaxterm or cmder)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Copy the below bash script and save it on your machine with a .sh&amp;nbsp;file type. I named it fix_android.sh&lt;/P&gt;&lt;P&gt;**************************************************************&lt;/P&gt;&lt;P&gt;#!/bin/bash&lt;/P&gt;&lt;P&gt;echo -n "Enter the Ip Address of the Android TV: "&lt;BR /&gt;read ip&lt;BR /&gt;port=5555&lt;/P&gt;&lt;P&gt;echo "Checking the connectivity to the Android TV...."&lt;BR /&gt;ping $ip -c 5 -s 500&lt;/P&gt;&lt;P&gt;echo "Checking the Developer Mode ...."&lt;BR /&gt;adb kill-server&lt;BR /&gt;echo ""&lt;BR /&gt;adb connect $ip:$port&lt;BR /&gt;echo ""&lt;BR /&gt;echo ""&lt;BR /&gt;echo ""&lt;/P&gt;&lt;P&gt;sleep 5s&lt;/P&gt;&lt;P&gt;echo ""&lt;BR /&gt;adb devices -l&lt;/P&gt;&lt;P&gt;echo ""&lt;/P&gt;&lt;P&gt;echo -n "Time before the Sync : "&lt;BR /&gt;adb shell date&lt;BR /&gt;echo ""&lt;BR /&gt;echo ""&lt;BR /&gt;echo "Let me sync the time on the TV ......"&lt;BR /&gt;adb shell settings put global auto_time 1&lt;/P&gt;&lt;P&gt;echo ""&lt;BR /&gt;echo ""&lt;BR /&gt;echo -n "After the sync time on tv is: "&lt;BR /&gt;adb shell date&lt;BR /&gt;echo ""&lt;BR /&gt;echo "Please check the time on the TV now ....."&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;*************************************************************************************&lt;/P&gt;&lt;P&gt;Once you have saved it, provide enough permissions to execute the script via below command (I am assuming that user will save the above text named as fix_android.sh on desktop:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;$ cd ~/Desktop/&lt;/P&gt;&lt;P&gt;$ chmod 777 fix_android.sh&lt;/P&gt;&lt;P&gt;$ sh fix_android.sh&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;this will execute the script locally on your machine. Once executed , script will ask the ip of the TV (Please make sure that adb has been enabled to run on wifi/ip instead of USB)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Sample output from my TV:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;sh fix_android.sh&lt;BR /&gt;Enter the Ip Address of the Android TV: 192.168.178.88&amp;nbsp; &amp;gt;&amp;gt;&amp;gt;I provided the ip&lt;BR /&gt;Checking the connectivity to the Android TV....&lt;BR /&gt;PING 192.168.178.88 (192.168.178.88) 500(528) bytes of data.&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;&amp;gt;checking connectivity, if ping fails please fix it&lt;BR /&gt;508 bytes from&amp;nbsp;192.168.178.88: icmp_seq=1 ttl=64 time=2.44 ms&lt;BR /&gt;508 bytes from&amp;nbsp;192.168.178.88: icmp_seq=2 ttl=64 time=2.24 ms&lt;BR /&gt;508 bytes from&amp;nbsp;192.168.178.88: icmp_seq=3 ttl=64 time=25.2 ms&lt;BR /&gt;508 bytes from&amp;nbsp;192.168.178.88: icmp_seq=4 ttl=64 time=2.37 ms&lt;BR /&gt;508 bytes from&amp;nbsp;192.168.178.88: icmp_seq=5 ttl=64 time=62.5 ms&lt;/P&gt;&lt;P&gt;--- 192.168.178.88 ping statistics ---&lt;BR /&gt;5 packets transmitted, 5 received, 0% packet loss, time 4005ms&amp;nbsp; &amp;gt;&amp;gt;&amp;gt;packet loss must be 0%&lt;BR /&gt;rtt min/avg/max/mdev = 2.244/18.951/62.476/23.496 ms&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Checking the Developer Mode ....&lt;BR /&gt;cannot connect to daemon at tcp:5037: Connection refused&lt;/P&gt;&lt;P&gt;* daemon not running; starting now at tcp:5037&lt;BR /&gt;* daemon started successfully&lt;BR /&gt;connected to&amp;nbsp;192.168.178.88:5555&amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;&amp;gt;&amp;gt;&amp;gt;my laptop connected to TV wirelessly&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;List of devices attached&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;&amp;gt;MY TV details&lt;BR /&gt;192.168.178.88:5555&amp;nbsp;&amp;nbsp; &amp;nbsp;device product:BRAVIA_xxxxxxxxxxxxxxxx:BRAVIA_4K_GB device:xxxxxxxxxxxxxxx:x&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Time before the Sync : Wed Mar &amp;nbsp;4 02:47:15 CET 2020&amp;nbsp; &amp;nbsp;&amp;gt;&amp;gt;&amp;gt;current tv time before script fixes the time&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Let me sync the time on the TV ......&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;After the sync time on tv is: Tue Aug 11 18:58:21 CEST 2020&amp;nbsp; &amp;gt;&amp;gt;&amp;gt;&amp;gt;current tv time after script fixes the time&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I HOPE THIS SAVES SOMEONE ELSES TIME TO FIX DATE AND TIME.&lt;/P&gt;&lt;P&gt;If someone still has issues please reach out to me on hesingh0102@gmail.com&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;</description>
    <pubDate>Tue, 11 Aug 2020 17:29:41 GMT</pubDate>
    <dc:creator>hemant0102</dc:creator>
    <dc:date>2020-08-11T17:29:41Z</dc:date>
    <item>
      <title>Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2152871#M3316</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I have the KDL-50W755C, Bravia 2015 Android TV. Unfortunately, the time is wrong - its time is 88 minutes in the future. I wanted to change it in the settings, but all options are greyed out. When I go to "Settings" --&amp;gt; "Date &amp;amp; Time" --&amp;gt; "Time", only the option "Use 24-hour format" is available. All other 3 options, one of them "Set time", are greyed out. The time zone is the correct one.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;So now the TV is showing a wrong time and is not allowing to change it. What can I do about it?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2016 14:22:21 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2152871#M3316</guid>
      <dc:creator>andrebrd</dc:creator>
      <dc:date>2016-03-23T14:22:21Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2152900#M3317</link>
      <description>&lt;P&gt;Did you try this:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sony-eur-eu-en-web--eur.custhelp.com/app/answers/detail/a_id/83480/kw/date%20time%20wrong" target="_blank"&gt;http://sony-eur-eu-en-web--eur.custhelp.com/app/answers/detail/a_id/83480/kw/date%20time%20wrong&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but if this is 88 minutes and not integer hours there can be a software or hardware issue.&lt;/P&gt;&lt;P&gt;Try disconnecting from modem router and then watch a dvb channel to see if corrected.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2016 14:49:07 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2152900#M3317</guid>
      <dc:creator>MiCal1967</dc:creator>
      <dc:date>2016-03-23T14:49:07Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2152932#M3318</link>
      <description>&lt;P&gt;Also have a look if by mistake you entered Store Mode(Retail Mode Settings) and disable by selecting Home Mode.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Another problem could be internal CMOS( back-up) battery if of course new TV sets include one on their mainboard. But then you should have and some other issues like lost settings, channels etc&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;IMG src="https://community.sony.dk/t5/image/serverpage/image-id/314455i779B44ED9472DB81/image-size/original?v=mpbl-1&amp;amp;px=-1" alt="kdl-32xxx.jpg" title="kdl-32xxx.jpg" border="0" /&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 23 Mar 2016 16:31:55 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2152932#M3318</guid>
      <dc:creator>MiCal1967</dc:creator>
      <dc:date>2016-03-23T16:31:55Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315696#M18203</link>
      <description>&lt;P&gt;&lt;a href="https://community.sony.dk/t5/user/viewprofilepage/user-id/664750"&gt;@andrebrd&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Did you solve this?&lt;/P&gt;&lt;P&gt;I'm having a same problem at KD-55XD8599 model.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2017 18:55:12 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315696#M18203</guid>
      <dc:creator>hija31</dc:creator>
      <dc:date>2017-04-04T18:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315699#M18204</link>
      <description>&lt;P&gt;&lt;a href="https://community.sony.dk/t5/user/viewprofilepage/user-id/693579"&gt;@hija31&lt;/a&gt;&lt;/P&gt;&lt;P&gt;Is your Automatic date &amp;amp; time set to OFF? With other options you can't manually change time and date and that's why they are greyed out.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2017 19:06:55 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315699#M18204</guid>
      <dc:creator>kinggo01</dc:creator>
      <dc:date>2017-04-04T19:06:55Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315705#M18205</link>
      <description>&lt;P&gt;It's set to "Use brodcast time" and I can't change it, because is greyed out!!!!&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2017 19:29:56 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315705#M18205</guid>
      <dc:creator>hija31</dc:creator>
      <dc:date>2017-04-04T19:29:56Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315711#M18207</link>
      <description>&lt;P&gt;hmmmm..... that option should always be available. Are you using some restriction on the profile? Or maybe another profile? Didn't try that personaly but..... I know that using VPNs can sometimes mess up network time.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2017 20:04:57 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315711#M18207</guid>
      <dc:creator>kinggo01</dc:creator>
      <dc:date>2017-04-04T20:04:57Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315718#M18208</link>
      <description>&lt;P&gt;I've just reseted the TV and now it's showing the correct time, but the option is still greyed out.&lt;/P&gt;&lt;P&gt;Automatic time zone is "On" and greyed out.&lt;/P&gt;&lt;P&gt;No, I'm not using any restrictions and using only one profile.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Apr 2017 21:01:23 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2315718#M18208</guid>
      <dc:creator>hija31</dc:creator>
      <dc:date>2017-04-04T21:01:23Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2325280#M18833</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.sony.dk/t5/user/viewprofilepage/user-id/693579"&gt;@hija31&lt;/a&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Same issue for me here :&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sony.co.uk/t5/android-tv/v3865-missing-automatic-time-zone-adjustment/m-p/2324255#M18777" target="_blank"&gt;https://community.sony.co.uk/t5/android-tv/v3865-missing-automatic-time-zone-adjustment/m-p/2324255#M18777&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The difference is that mine is set to &lt;STRONG&gt;OFF&lt;/STRONG&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 30 Apr 2017 10:43:55 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2325280#M18833</guid>
      <dc:creator>MiCal1967</dc:creator>
      <dc:date>2017-04-30T10:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2463846#M27986</link>
      <description>&lt;P&gt;I'm having the exact same issue. ANd because of that I can't play Netflix. How did you solve your problem?&lt;/P&gt;</description>
      <pubDate>Thu, 10 May 2018 07:47:55 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2463846#M27986</guid>
      <dc:creator>rit_mrtns</dc:creator>
      <dc:date>2018-05-10T07:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2531849#M32123</link>
      <description>&lt;P&gt;I can't changed it from broadcast to network, because it is grayed out?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there a way to enable full access to settings options?&lt;/P&gt;</description>
      <pubDate>Mon, 05 Nov 2018 22:27:41 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2531849#M32123</guid>
      <dc:creator>nenadx</dc:creator>
      <dc:date>2018-11-05T22:27:41Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2635838#M37681</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.sony.dk/t5/user/viewprofilepage/user-id/736396"&gt;@nenadx&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It seems like I am having the exact same problem. Have you been able to solve it in the end? And if so, how exactly?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Kind regards,&lt;/P&gt;&lt;P&gt;Wouter&lt;/P&gt;</description>
      <pubDate>Sat, 20 Jul 2019 06:32:23 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2635838#M37681</guid>
      <dc:creator>WouterEnsing</dc:creator>
      <dc:date>2019-07-20T06:32:23Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636188#M37705</link>
      <description>I have exactly the same issue on KD-55XF9005, this is a JOKE right? this issue was first reported (HERE) in 2016 and this is still not fixed, ergo THIS IS A JOKE RIGHT?</description>
      <pubDate>Sun, 21 Jul 2019 11:36:14 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636188#M37705</guid>
      <dc:creator>Del369</dc:creator>
      <dc:date>2019-07-21T11:36:14Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636218#M37708</link>
      <description>I do have a semi solution to this, for me I believe the issue is happening because I don't use local TV so "use Broadcast time" maybe failing as I'm not sync'd to the TV Guide and I use almost exclusively Netflix or HDMI (which seems to have set itself as default) once I activated the Guide it sync'd, before that it was set to June20th and was about 4hrs behind. I paid a lot of money for this TV and to find it can't even manually set a Time and Timezone ***** me off badly, it stinks of the usual big company cost cutting and outsourcing!</description>
      <pubDate>Sun, 21 Jul 2019 12:58:45 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636218#M37708</guid>
      <dc:creator>Del369</dc:creator>
      <dc:date>2019-07-21T12:58:45Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636312#M37718</link>
      <description>&lt;P&gt;And how to activate that guide? I have the same problem:&lt;/P&gt;&lt;P&gt;Greyed out date/time options. AND not being able to GoogleCast (after software update on TV). 2018 model bravia.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jul 2019 18:42:17 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636312#M37718</guid>
      <dc:creator>radavi</dc:creator>
      <dc:date>2019-07-21T18:42:17Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636320#M37719</link>
      <description>&lt;P&gt;I have exactly the same issue. I think it came out with the last Android update. I reset the TV’ the time went ok. But then, I unplugged the cable for other teasons, and the time was wrong again&lt;/P&gt;</description>
      <pubDate>Sun, 21 Jul 2019 18:58:57 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636320#M37719</guid>
      <dc:creator>Eupastor</dc:creator>
      <dc:date>2019-07-21T18:58:57Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636418#M37733</link>
      <description>&lt;P&gt;Sony's help desk responded by now. The problem is indeed that the time can't be synced with a broadcast signal if you don't have a tv connection (I have only an internet connection). The reason for the fact that you can't change what your TV syncs with is unclear. However, it can be solved by resetting to the factory settings, and setting your country to a neighbouring country. For example, I live in the Netherlands, and if I set it to Belgium, the settings are unabled again. If I change the sync option to 'Sync to network', the time is set correctly. Coincidentally, casting to the TV works again as well. Hopefully this helps other people with this same problem.&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 08:54:25 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636418#M37733</guid>
      <dc:creator>WouterEnsing</dc:creator>
      <dc:date>2019-07-22T08:54:25Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636428#M37734</link>
      <description>&lt;P&gt;So this happens in 2015 and now again in 2019 !? Same crap development team?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;but the tip of changing country to 'not your own' seemed to work&lt;/P&gt;</description>
      <pubDate>Mon, 22 Jul 2019 09:23:57 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2636428#M37734</guid>
      <dc:creator>radavi</dc:creator>
      <dc:date>2019-07-22T09:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2637304#M37804</link>
      <description>&lt;P&gt;H O W&amp;nbsp; &amp;nbsp;D O E S&amp;nbsp; T H I S&amp;nbsp; T V&amp;nbsp; S Y N C&amp;nbsp; I T S&amp;nbsp; I N T E R N A L&amp;nbsp; &amp;nbsp;C L O C K ?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Time config through the menu is clearly bugged and i cannot get it to work...&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This morning out of nothing it thought it was living in 2016...&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I've read it syncs its time through dvb-signal but what if i only use internet???????????&amp;nbsp;&lt;/P&gt;&lt;P&gt;All other devices work fine on the network (right date and time). Also I have a NTP daemon installed on a network client (acting as a local NTP server)... NOTHING happens on the Bravia, it's not picking it up!!!&lt;/P&gt;&lt;P&gt;What is going on here???&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Options to manipulate time are greyed out on the TV - WHY!!!&lt;/P&gt;</description>
      <pubDate>Wed, 24 Jul 2019 19:37:00 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2637304#M37804</guid>
      <dc:creator>Wernervs</dc:creator>
      <dc:date>2019-07-24T19:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Wrong time + greyed out time options (Bravia 2015 Android TV)</title>
      <link>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2637415#M37813</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.sony.dk/t5/user/viewprofilepage/user-id/819842"&gt;@Wernervs&lt;/a&gt;&amp;nbsp;. Did you try the solution that worked for me (see above)? Perhaps that will help for you as well.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Jul 2019 07:16:08 GMT</pubDate>
      <guid>https://community.sony.dk/t5/android-tv/wrong-time-greyed-out-time-options-bravia-2015-android-tv/m-p/2637415#M37813</guid>
      <dc:creator>WouterEnsing</dc:creator>
      <dc:date>2019-07-25T07:16:08Z</dc:date>
    </item>
  </channel>
</rss>

