HTC Incredible :: Will Rooting Your Android Void Your Insurance
May 3, 2010sorry if this is a dumb question but everyone says rooting you phone will void warranty but will it void your insurance if you pay monthly for it?
View 6 Repliessorry if this is a dumb question but everyone says rooting you phone will void warranty but will it void your insurance if you pay monthly for it?
View 6 Repliesdoes rooting invalidate insurance on orange care?
View 5 Replies View RelatedDoes rooting void your warranty?
I have been Googling and some say it does, and some say it doesn't!
Could anyone give me a straight and correct answer?
I am debating between the Hero and the Moment. I have a few ?'s. What is the purpose of rooting, what features do you not have IF you choose not to root and does rooting void your warranty on the phone?
View 1 Replies View RelatedOk. First things first, I am simply in love with my Droid. I learn new things everyday. For example, yesterday i took a picture on a trip, and on the ride home, went to look at the picture in my gallery, and under the picture it read Dayton, Ohio. It knew where I took the picture!
Anyways enough of my droid love, i've got some questions for you droid gurus.
1. I want to root my phone so badly. Im afraid of it bricking though. But the thing is, ive done a lot of research, and it seems bricking hardly ever happens. I want to overclock and i really want some kick ass ROMS! Should i do on pc or my pro?
2. My screen, when closed, when you tap on the screen near the lower left corner, the screen taps. Like the screen is loose. I wanna take it to verizon. But i wanna root. But i want my warranty still usable.
I should "root" my Droid X phone, something ive not heard of before -
1) does this void the manufacturer warranty, or the $6/month im paying for verizon accidental damage warranty
2) is there a way to restore the original settings on the phone, ie make it like the root never happened if i need to? so i dont lose warranty?
I updated my phone to the 2.2 through a link i found on a thread here. There was no disclaimer on the link saying this will void my warranty, so i went ahead with it. No that I am doing more research, it seems the I might have voided my warranty due to my impatience :/
Can anyone confirm or deny this? If it DOES void my warranty, how does verizon know that I did a downloaded update rather than an OTA update.
So how few options do I have? I dropped my incredible on the garage floor and it hit in the corner and shattered. It still works fine, but I had to put some tape below the screed near the optical sensor to cover the sharpness from the cracks where the screen protector doesn't cover.
Anyhow, I did not get insurance as I'd never used it in the 15 years I owned a cell phone... murphy's law of course. I went to a Verizon store and they gave me a phone number of a 3rd party repair guy. He's closed for the day so I started to Google stuff and it seems that I am up the creek. The screens are the reason they are not making these as fast as they'd like so I assume there are none available. I cannot find any info on repairing them... not looking good is it?
I wonder if VZW would void the manufacturer warranty because of this? There are some issues with radio and signal quality, home screen swiping and phantom app openings .....
View 3 Replies View RelatedI was looking at the Traveler's Insurance Co. website and they have an app for iphone and blackberry but not for Android. I though this was a bit odd. They do have an m.travelers.com site, but I was hoping for an app with a little quicker and easier way to get insurance info and to help with any accidents/claims on the spot.
View 1 Replies View RelatedI've never had a smartphone before and am thinking of potentially buying a Nexus One. Its a big investment and with bringing it around everywhere I am afraid that I might break or lose it. I am wondering what insurance options there is out there. How is Verizon's insurance? Can you get insurance through your home owners insurer? Any other options out there? How much is the deductable?
View 3 Replies View RelatedI have this code:
hubSpinner.setOnItemSelectedListener(new OnItemSelectedListener() {
public void onItemSelected(AdapterView<?> parentView,
View selectedItemView, int position, long id) {
final MediaPlayer mp2 = MediaPlayer.create(Textbox.this, R.raw.hero);
mp2.start(); } public void onNothingSelected(AdapterView<?> parentView) {
} } );
(The code basically runs when a new item is selected of a spinner and then plays a song, which later will be a variable based on what was picked, but I'm fine as it is for now). And I want to be able to use 'mp2' out of this public void, (I want a button which pauses it). How can I do this?
I'm a bit new to programming Android App's, however I have come across a problem, I can't find a way to make global variables -unlike other coding like php or VB.NET, are global variables possible? If not can someone find a way (and if possible implement the way into the code I will provide below) to get a value from the variable 'songtoplay' so I can use in another Public Void...
Here is the code:.............
Basically, it gets the value from the Spinner 'hubSpinner' and displays it in a Toast. I then want it to return a value for string variable 'songtoplay' -or find a way to make it global or useable in another Public Void, (Which is will a button, -loading the song to be played)
Dropped the phone for the first time from my pocket the screen ends up being completely cracked. Didnt get insurance and i am past the 30days.
View 44 Replies View RelatedThe title says it all: has anyone had any experience with Worth Ave phone insurance?Googling doesn't turn up very many discussions of the insurance, however it does look pretty good on paper.If you've had an experience with in, please give some details. What did you insure? How much did you pay? Did you have to make any claims? If so, how did the claims process go, and what was the result? Have you noticed anything about Worth Ave insurance that you think may go unnoticed if not looking closely Any and all information is helpful.
View 6 Replies View RelatedOn checkout at mobile phones direct it gives you 3 months mobile insurance free. Now there is a option to remove the insurance but what i am wondering is if i go through with the free 3 months am i then dedicated to it for the full 18 months? Will i have to pay anything for the months after.
View 3 Replies View RelatedI was lied to by Verizon. When I upgraded I was told that my current 6 dollar plan would cover my phone the same way my old phone was covered. Luckily I called today and found out the truth. They offer a 6 dollar plan that does indeed cover the Droid. It only will cover it for 1 Year. Outside of a year then you are not covered at all. So thinking logically I asked about the 9 dollar plan and was told it does cover you outside of the 1 year warranty. Here comes the stupid part, you are forced to purchase either one of these plans within 30 days of getting the phone even though you are technically covered under the manu warranty for 1 year. So basically you need to pay verizon 108 dollars for a years worth of coverage when your phone is technically already covered. Does anyone else see an issue with this
View 36 Replies View RelatedI have a requirement where I have to read/parse some data from the server(using HTTPConnection) and then display it on to the screen. To avoid ANR issue I used AsyncTask to perform the above. Now in order to avoid application crash in case the activity gets destroyed(either by OS or if orientation changes or say on any incoming call-->where user stays on the phone for long and for some reason OS destroys/recreates the activity). Currently, I hols the reference of AsyncTask in my activity and then provide a callback(the activity itself) to AsyncTask so that I can pos back message to activity(like closing progress dialog box).In order to avoid memory leaks on onPause I nullify this activity reference in AsyncTask.Before onPause I save the AsyncTask instance using onSaveInstanceState method but I have to use putSerializable for that. I have read on the forums that serialization method is slow, so my question is should I use parcelable approach(and whether the converting AsyncTask to parcelable will be same as creating any other object parcelable). or both these approaches are totally wrong i.e...............
View 10 Replies View RelatedAlmost two months ago I bought an Eris (pristine condition) off someone on Craigslist. About an month ago Verizon had open enrollment for insurance.thus I was able to buy insurance on my phone for $8 bucks a month!Just though I'd let everyone know...recommend checking with Verizon regarding their open enrollment.
View 4 Replies View RelatedI think it's $7 per month and has a $80 deductible. Do you guys usually go with or without it?
View 30 Replies View RelatedI briefly spoke to SE UK on the facebook page and asked about de-branding the phone, I was told that was would void my warranty but the only explanation given was that 'thisis classed as tampering. It is also not something we would recommend as this could damage your handset'
I followed up with a couple more questions but have recieved no reply so thought I would bring it over here instead.
First up, de-branding the phone does not involve rooting it so the process of rooting can't be the reason for the void.
I want to know why updating the phone with an official, SE approved update voids the warranty?
I also want to know why Sony themselves don't provide an option of just updating the phone with the generic update instead of making us wait for the networks to release it?
Or is this all simply about money, are Vodafone etc paying SE a healthy amount to not let us de-brand and remove the useless unused app's that they put on?
My carrier told me my phone comes with the 1 yr warranty from Sony, but once I update with the 2.1 my warranty is void. Even though it is Sony who is putting it out. They said it voids it because that is not the way the phone was sold. I still have 11 1/2 months left on this warranty so I am not sure what to do.
View 10 Replies View RelatedI am sorta shocked, only for the fact that he freakd out that I had installed a new custom boot screen and told him that rooting doesn't neccessarily remove anything sprint puts on the phone. I guess more shocked that he knew what it was.
Regardless, if I own the phone, I am going to do what ever hat I want to it even if it voids the warranty because that shouldn't be an issue.
I had a rooted Incredible using this method before however I had a problem with the on screen keyboard so I got a replacement. The replacement just came yesterday. Now I am rooting the replacement and the Unrevoked 3 program gets stuck at "Waiting for root... (Safe to restart if this doesn't work)"
I have the HBOOT drivers installed and my phone comes up in device manager as "Android Composite ADB Interface"
Did they apply a new update to the phone that prevents rooting? If so how long before I can get around it?
Hey all. I noticed in the top right hand corner underneath my battery cover on back it says the word void. Surely this is only meant to show If I have moved anything. Only had the phone 2 weeks.
View 2 Replies View RelatedI rooted my HTC Incredible last week and installed the Virtuous ROM with froyo 2.2. I recently realized that after doing this there are a ton of apps missing from the android market. Even ones that I already have installed on my phone like Evernote and Google Sky Map. If I go to the downloads section of the market which should show the apps I have installed it shows none.
The verizon section of the market displays only three applications when I know there should be a whole lot more. What is going on? I cannot find any apps. When I search for something there is usually one or two apps that show up and are not even what I was looking for. Is this a widespread problem with the market or a side effect of rooting and upgrading to the virtuous ROM?
I'm going to root my phone tonight once home from EMS crew. I want to keep my Stock SD card so that if anything happens I can just pop it back in. With the new one, will I need to preinstall all current and stock files/ folders or will it be formatted once I put it in for the first time pre-root?
View 3 Replies View RelatedI'm tired of waiting for the wifi hotspot feature in froyo. My question is can I just root my phone and use one of the wifi tether apps or do I have to install one of the ROM's. I really can't risk downtime on my phone, so I'm a little scarred of loading a ROM.
View 4 Replies View RelatedHow do I get back to 1.22.605.2 without rooting? Is it possible? I have never rooted the phone but installed the interim leaked OTA from July that enabled HotSpot and 720 with new splash screen but now I can't install the 2.2 Update.zip.
View 25 Replies View RelatedRandom fonts have gotten much smaller:
The weather channel app, the game cestos, home switcher,
Fonts are smaller and apps no longer formatted correctly, as in cant use them becuause stuff isn't displaying properly
Tried removing and reinstalling but no different.
Any one else having issues?
After rooting with unrevoked i installed LEDS hack and lamppu