The wait for lollipop is getting ridicules.

I pay more money to access your network and buy the most expensive devices but everyone else get's their android updates faster and there service is cheaper. 
My current Verizon devices are: 
Droid Turbo, Nexus 7 and Sony Xperia Z2 Tablet. 
None have been updated to lollipop.  What's the real reason Verizon?  Not interested in a canned response.

We (Turbo owner here) want the update. Some people don't mind waiting, but some of us do! I know a lot of the update issues are resolved by resetting phones, but some people are stubborn and refuse to do a phone reset. I know someone at work who has called Verizon more than once and lied about doing a phone reset asking for help after the update.
I want the update, and will do a phone reset after and am sure it will be fine. I'll do a phone reset now, then, and later. I don't care. No big deal. What is a big deal is having a flagship phone still waiting for an update months later.

Similar Messages

  • How do i get my iphone 6 plus past the "Waiting for changes to be applied" in itunes.Not syncing music.

    I am having trouble with step 5 of syncing. It cant get past the "Waiting for changes to be made" part of the syncing process. Then if I eject the music is not on there. Help?

    Go to your App Store and see if you have an App that is in the process of updating or for some other reason in-progress.  Check your iTunes for something that is in-progress. 

  • My iphone phone wont turn on and when i plug into computer it wants to restore then gets stops at the 'waiting for iphone' what do i do? not jailbroken not damaged? HELP!!!!!

    my iphone phone wont turn on and when i plug into computer it wants to restore then gets stops at the 'waiting for iphone' what do i do? not jailbroken not damaged? HELP!!!!!

    i have, its connected to my sisters computer,it starts to restore then says there was a problem downloading the software for the iphone, the network connection has timed out. what does this mean?

  • HT201210 my iphone5 is stuck at the i tunes logo whenever i try to restore it the iphone reboots at the waiting for iphone stage and the i tunes logo appears againe

    my iphone5 is stuck at the i tunes logo whenever i try to restore it the iphone reboots at the waiting for iphone stage and the i tunes logo appears againe

    Water damage is really a tough hurdle to get over if the steps you have already tried do not work.
    The next step would be to tranfer your Logic Board to a working 3GS to see if it works.
    If the Logic Board is good or you just want to try one more thing, try cleaning the Dock Port very well with Isopropyll Alcohol. If still problem, at most replace the Dock Port Assembly.
    Throwing good money after a bad iPhone is not a good idea.

  • What should I do when my iPhone is in recovery mode, I'm trying to restore, and it's stuck at the "Waiting For iPhone" stage??

    I dropped my iPhone on the ground, and as I went to pick it up, I started to swear under my breath as I realized my iPhone was in recovery mode. I'm like "how would an iPhone be this sensitive -_-," and so as my iPhone's docked unto my laptop, and with relentless attempts to restore my iPhone, I always find iTunes stuck at the "Waiting For iPhone" stage and I honestly have no clue what to do at this point. What should I do to bypass this or fix this problem? Or do I just wait? -_-

    Nothing except that when I turn it on, there's a USB cable and an iTunes logo above it, indicating that it's in recovery mode.

  • In flex charts the label for next month get dropped

    I found for DatatTimeAxis if you set disabledRanges to the last date of the month the label for next month gets dropped using property labelUnits='months". Any ideas? Below is the code:
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the DateTimeAxis class. -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
         <mx:Script>
              <![CDATA[
                   import mx.collections.ArrayCollection;
                   [Bindable]
                   public var stockDataAC:ArrayCollection=new ArrayCollection([{date: "2005, 6, 1",
                             close: 30}, {date: "2005, 7, 31", close: 25}, {date: "2005, 8, 3",
                             close: 40}, {date: "2005, 9, 4", close: 30}, {date: "2005, 10, 5",
                             close: 50}, {date: "2005, 11, 6", close: 43}]);
                   private var d:Date=new Date("7/31/2005");
                   [Bindable]
                   private var offDays:Array=[d];
                   public function myParseFunction(s:String):Date
                        // Get an array of Strings from the comma-separated String passed in.
                        var a:Array=s.split(",");
                        // Create the new Date object. Subtract one from
                        // the month property because months are zero-based in
                        // the Date constructor.
                        var newDate:Date=new Date(a[0], a[1] - 1, a[2]);
                        return newDate;
              ]]>
         </mx:Script>
         <mx:Panel title="DateTimeAxis Example"
                     height="100%"
                     width="100%">
              <mx:LineChart id="mychart"
                               height="100%"
                               width="100%"
                               paddingRight="5"
                               paddingLeft="5"
                               showDataTips="true"
                               dataProvider="{stockDataAC}">
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis dataUnits="days"
                                             parseFunction="myParseFunction"
                                             disabledRanges="{offDays}"
                                             labelUnits="months"/>
                   </mx:horizontalAxis>
                   <mx:verticalAxis>
                        <mx:LinearAxis baseAtZero="false"/>
                   </mx:verticalAxis>
                   <mx:series>
                        <mx:LineSeries yField="close"
                                          xField="date"
                                          displayName="AAPL"/>
                   </mx:series>
              </mx:LineChart>
         </mx:Panel>
    </mx:Application>

    I found your posted code to be messed up. I fixed it and could not see your problem.
    Here is the fixed code.
    <?xml version="1.0"?>
    <!-- Simple example to demonstrate the DateTimeAxis class. -->
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
         <mx:Script>
              <![CDATA[
                   import mx.collections.ArrayCollection;
                   [Bindable]
                   public var stockDataAC:ArrayCollection=new ArrayCollection([
                     {date: "2005, 6, 1", close: 30},
                     {date: "2005, 7, 31", close: 25},
                     {date: "2005, 8, 3", close: 40},
                     {date: "2005, 9, 4", close: 30},
                     {date: "2005, 10, 5", close: 50},
                     {date: "2005, 11, 6", close: 43}]);
                   private var d:Date=new Date(2005,8,31);
                   [Bindable]
                   private var offDays:Array=[d];
                   public function myParseFunction(s:String):Date
                        // Get an array of Strings from the comma-separated String passed in.
                        var a:Array=s.split(",");
                        // Create the new Date object. Subtract one from
                        // the month property because months are zero-based in
                        // the Date constructor.
                        var newDate:Date=new Date(a[0], a[1] - 1, a[2]);
                        return newDate;
              ]]>
         </mx:Script>
         <mx:Panel title="DateTimeAxis Example"
                     height="100%"
                     width="100%">
              <mx:LineChart id="mychart"
                               height="100%"
                               width="100%"
                               paddingRight="5"
                               paddingLeft="5"
                               showDataTips="true"
                               dataProvider="{stockDataAC}">
                   <mx:horizontalAxis>
                        <mx:DateTimeAxis dataUnits="days"
                                             parseFunction="myParseFunction"
                                             disabledRanges="{offDays}"
                                             labelUnits="months"/>
                   </mx:horizontalAxis>
                   <mx:verticalAxis>
                        <mx:LinearAxis baseAtZero="false"/>
                   </mx:verticalAxis>
                   <mx:series>
                        <mx:LineSeries yField="close"
                                          xField="date"
                                          displayName="AAPL"/>
                   </mx:series>
              </mx:LineChart>
         </mx:Panel>
    </mx:Application>
    If this post answers your question or helps, please mark it as such.
    Greg Lafrance - Flex 2 and 3 ACE certified
    www.ChikaraDev.com
    Flex / AIR Development, Training, and Support Services

  • I am considering getting an iphone...  Which model is the best for me to get?

    I am considering getting an iphone... I do not care about getting the "latest gadget", but have all apple products and would love the convenience of the calendar, music, camera, etc... on my phone. Which model is the best for me to get?
    Is it really worth it for the newest (and most expensive) model, or is the 3G sufficient for regular use? or is the 4 now the most basic model I should invest in? or do I really have to get the 4S?

    tonefox wrote:
    One wonders why you are hanging around Apple forums...
    Many have wondered before, even I, yet in the end I settled for a reason... "unbiased help":
    iPhone 4S Battery Life: Best solutions and procedures for 1st time user: 1-Do you have a battery life issue (learn first what the usage time spec is about) 2-What can you try to remedy the situation without reading 500 pages of posts

  • Where is the wait for note mode in logicstudio

    Can anyone please tell me where the wait for note mode is in logicstudio, or how to enable it "ie hit record button, and it waits for me to hit a midi note before it starts to record.
    Anyone out there with the info

    that is so wack, i cant believe this is ok with everyone, i need wait for note mode , it might be a mental thing but dam, thanks for the info, something so simply

  • How do I get rid of the 'Waiting for Activation' on IPhone 5?

    I got the iPhone 5 today and set everything up using my Apple ID I created for my Ipod Touch 5
    Under IMessage and FaceTime, it says it's 'waiting for activation'
    I can't receive any messages and would like to know hot to fix this

    http://support.apple.com/kb/TS4268

  • Publish action waits for request to get completed in OSB11g

    Hi all,
    I am using OSB 11g. Following is my scenario:
    1) ProxyService1(wsdl based Proxy) publishes to ProxyService2(local Proxy)
    2) ProxyService2 routes to an MQ Posting BusinessService
    In ProxyService1 Response Pipeline, I have configured a dummy response irrespective of the Request.
    When I keep the Retry Count of BusinessService as 3 and Retry Iteration Interval as 120, and test ProxyService1 by keeping the Queue down, it waits for 6 minutes to give the dummy response.
    I do not want the ProxyService1 to get held up for such a long time. It should fire-and-forget the request and give response immediately. I even tried to Publish to the BusinessService. Still the same problem. Can anyone guide me?
    Thanks in advance!
    Regards,
    Karthik
    Edited by: Karthik Krishnamurthy on May 13, 2011 2:32 AM

    I know this might be late, but just wanted to mention that you can publish to a Proxy/Business Service asynchronously using the Routing Options (Quality of Service: Best Effort) with the publish action.
    This will ensure that the Calling proxy does not wait for a response from the provider (be it Proxy/Business Service). If we use this OSB will try its best to publish it, but does not guarantee that the message be delivered. But as long as the provider is available, the message is processed separately and does not block the main calling proxy.
    We use this scenarios frequently in our project. So just wanted to pass it on :)
    You can find a snap shot @ http://dl.dropbox.com/u/19901533/OSB_Publish_Action.JPG
    Refer to http://download.oracle.com/docs/cd/E13159_01/osb/docs10gr3/userguide/modelingmessageflow.html#wp1134375 for more information.
    Thanks,
    Patrick

  • How long is the wait for uptodate program?

    I bought a macbook pro on 23rd July which is after Lion release, and it still shipped with Snow Leopard. Applied to the "uptodate" program on 24th, and it is now 1st of august! Nine days and waiting, and no response at all. What am I suppose to do?

    I'm just wondering if there's a way to find out how long a wait to expect between each new episode of a show you've bought a season pass to?
    Sorry but no, there isn't. The iTunes Store normally posts episodes as soon as they get the episodes from the producers (barring a technical problem with the video that would require the iTunes Store to request a new copy).
    Since the show is screened weekly in my country, I can't see the reason for the 2 week+ wait. Any ideas?
    Probably delays or problems at the production house.
    If not, I can't seem to find a questions/complaints email address for iTunes Australia, can you point me in the right direction?
    http://www.apple.com/au/support/itunes/contact.html
    Though there's probably nothing they can tell you, but it won't hurt to contact them as ask what's going on.

  • Verizon Fios is by far the worse for trying to get service

    I have been signed up to get Verizon Fios since the end of July. It is now August 25. The first appointment I get a no call no show from a technician. After calling V and getting some answers the customer service rep said that the problem would be fixed and taken care of by my next appointment on the following Monday. I am fine and cool, not a problem. Monday comes a round and once again no call no show. This time I contacted V the rep said that the problem has not been fixed and I would have to wait and will receive a call when another appointment can be set up and the problem is fixed. The problem was supposedly an "engineering" problem that the apartment building does not have service but all the while I know others in the complex have fios because I have seen it in apartments and technicians installing them. The rep aslo asked if I gave them the right address and I was completely reading it off the complex website and she said that the address did not exist, when you can easly go on V's website and it will find the address when signing up for service. Eventually, a week later, I receive another email of another appointment and confirmed it. I contacted V to follow up and make sure its really going to get installed this time. I am even connected to the local dispatch and she confirms the appointment for Monday and I ask if it is possible to get it Sunday the 25th. It is August 25th and I am not trying to waste my time so I call V just to check the status of my technician and the rep, who by the way was the most rude and unprofessional representative I have ever talked to, said that there is a "fallout" "engineering" problem, tell me something I do not know, and that I would have to wait until Monday to call back and try to fix it. Same story but a different day. So that is three times, each time saying the problem was going to get fixed and not. I have been patient. I expect more from a company like Verizon. 

    Gamble97 wrote:
    First let me start off by saying in the past 12 years of owning a cell phone I have had almost every service provider in my area. (tmobile, at&t, spring, Verizon, & u.s cellular)
    I have had them all and must say that by far Verizon is the WORST service and has the WORST customer service ever. I joined and got a family plan (2 lines) to save money.
    I’m at home with windows all around and a skylight. I have no problems at work  with a building with no windows on ground level, but I can’t get reception at home inside or outside.
    For the 1st problem, why do you keep switching? Haven't you found a company with coverage that is good enough for you? No company has a signal EVERYWHERE. Have you been switching constantly because you choose to switch or your company forces you to switch? If the latter, you should complain to your company to go with the best service, not to ruin their business by going with substandard service. Additionally, no provider has the best signal EVERYWHERE. If your company is forcing you to switch, maybe you could suggest that they offer more than one provider for business phones. I know my company has contracts with AT&T, Sprint & Verizon. If you are constantly changing because you choose to change, then I would suggest that you pick the best footprint for you and then stick with it. Afterall, you have had them all, so you should know which would be best for you.
    As to the second part, this sounds more like a location problem rather than a phone problem. NO provider has service in ALL locations.

  • The wait for iTunes 11 ...

    Apple, I am glad that you are taking your time on iTunes 11 and making sure it works before you release it. I also hope that this long wait doesn't make it a dissapointment. You are great with your products, so I seriously doubt it will be ... So, please take all the time you need to get it right. I would rather you do that than do a M$ and release something full of bugs that needs 100 updates a day to fix .... Peace ..
    xfPsify

    The people reading and responding in this forum are just other Apple product users like you, not Apple itself. Apple uses its feedback pages (not this support forum) for garnering product feedback or suggestions. Apple Support Communities is an end-user to end-user (i.e., users like you helping other users) technical issue support feature. You should send feedback via:
    http://www.apple.com/feedback/ - Apple products feedback links
    You can be sure this forum will still be here.

  • How do I eliminate the "Waiting for sync to Start"

    I have too many photos to keep in sync (at least initially) over WiFi, so I plug in my iPhone to keep those in sync.
    However since IOS5, I just get an endless "Waiting for sync" message when the phone is plugged in.  I even turned it to airplane mode to eliminate WiFi as an option and it didn't help.
    Anybody have a clue?

    I'm having the exact same problem with my 3GS, updating to iOS5.1 right now, hopefully this will fix it..

  • Better to wait for U1 or get S10-3t now?

    do you think it's better to get the s10-3t now or wait for the u1 to come out?

    I'd wait for the GQ6

Maybe you are looking for

  • Error while trying to create a Solr collection (java.io.IOException: The device is not ready)

    Hello, everyone. I'm trying to create a .cfm document that will erase a specific Solr collection and then re-create it, index it, and optimize it. The delete works flawlessly.  Unfortunately, creating it isn't working, at all.  I get the following me

  • Having a problem converting a PDF file to Words with Adobe's conversion program.

    Having a problem converting a PDF file to Words with Adobe's conversion program.

  • Burn Folder gone bizarro!

    I created a Burn Folder in the MacOS 10.4.5 Finder today, with the intent of taking images from my iPhoto library and organizing a re-usable "staging area" to create CD-Rs from a catalogue of select images. As I understand it, a Burn Folder is suppos

  • JDBC Driver at 'lh setup' Problems on MYSQLDB

    I just installed a small IdM showcase in my company wanting a remote MYSQLDB as index Database for IdM. When runnig setup I try to access the JDBC Driver which is installed in my Tomcat/common/lib directory as well a in my /idm/WEB-INF/lib directory

  • Code Problem!  Please Help!

    Hello Everyone, I have a problem with a code that I have been working on for days. I keep getting this error message: exception in thread main java.lang.ArrayIndexOutOfBoundsException I would really appreciate your help. I am a beginner java programm