HTC Desire :: Unable To Start Wi-fi

Jun 10, 2010

Had a wi-fi problem on my htc desire for a while now..

One time I went to turn wi-fi on and it just said "Unable to start wi-fi". It had worked totally fine up until that point.

I've tried doing a factory reset, rooted, updated rom but it's still not working.

When the problem happened I had not rooted the phone or changed anything really.. it just happened.

In logcat it says:

CODE:..................

HTC Desire :: Unable to start wi-fi


HTC Desire :: Install OTA It Works Except - Says Unable To Start WIFI

Jun 24, 2010

I have a Orange (UK) Desire which i have gold carded and unbranded with no problems.

Software info below

Firm Ver 2.1-update 1
Baseband 32.30.00.28u_4.05.00.11
Kernel version 2.6.29-97da29ed
htc-kernel@and18-2#1
Build Number 1.15.405.3 CL150129 release-keys
Software number 1.15.405.3
Browser Webkit 3.1

There is now a software update available (1.15.405.4) which i have tried to install OTA it all works except it says unable to start WIFI. I have tried to install it with both my Goldcard and normal SD card (not sure if that would make any difference)

View 5 Replies View Related

General :: HTC Desire HD Unroot Process - Phone Unable To Start

Nov 3, 2012

i tried to unroot my htc desire hd via htcdev.com's unlock bootloader process...it was successfull..

gradual steps/mistakes...

1. installed clockworkmod from playstore
2. tried to access superuser...but there was some issue with that..
3. when i restarted my phone using vol- key and power button i entered into hboot mode, from where i enter clockworkmod...
4. full wiped the phone, cache and everything that was given in instruction of icecold sandwich..
5. icecold sandwich was there in sd card as zip file....so i chose the "install zip from memory card option"..
6. then there is message of installation completed..

but my phone is unable to start.... there is htc logo and no further process..

View 5 Replies View Related

Unable To Start Activity

Apr 21, 2012

I got a error message "04-21 18:02:01.448: E/AndroidRuntime(328): java.lang.RuntimeException: Unable to start activity Component Info {pac.bib/ pac.bib.LivroBibliaActivity}: java.lang.NullPointerException" when click ListView. when try startActivity

Code:
private AdapterView.OnItemClickListener onListClick=new AdapterView.OnItemClickListener() {
public void onItemClick(AdapterView<?> parent,
View view, int position,
long id)
{
[code]....

View 3 Replies View Related

Android :: Unable To Start Service

Sep 4, 2009

My service is not in the same package namespace as my application / activities.

I have

CODE:...........

The issue is that my service is in -- package com.myco.service.myservice and my activity is in -- package com.myco.test.myactivity

My questions are:

1. does my service *have* to be in the com.myco.test namespace?

2. if it doesn't, how do I specify the android:name for my activity and my service to work?

View 8 Replies View Related

Android :: Unable To Start Emulator - 1.5

Apr 23, 2010

I got this trace when I tried to launch android 1.6 or 2.1. Android 1.5 is working fine. I tried to reinstall each SDK, but there is no way to get it working. I created those AVD with Eclipse plugin.

.............

View 1 Replies View Related

Sprint HTC Hero :: Unable To Start Tethering, Please Try Again!

Jun 25, 2010

I recently flashed to the Fresh 2.1.2 rom, and i'm having trouble using the "Wireless Tether". I've uninstalled the one that came with the rom, and i've installed a fresh new copy from the Marketplace. But every time I've tried hitting the "tether" button, it says "Unable to start tethering, please try again!"

My superuser app isn't doing anything, this might be the problem. Whenever I open the superuser app, it's a complete blank screen.

View 21 Replies View Related

HTC Legend : Unable To Start Wifi - Don't See MAC Address / How To Fix?

Jun 23, 2010

Well i have bought 2 month ago new, sim free Legend. After that i had like 2 firmware updates,and well after the second one i cant get wifi working. Its like "unable to start wifi" and after that i cant switch this process off, it shows "unable to turn wifi off". So to get rid of this i need to restart phone. So now i cant use wifi. I cant even turn off wifi notification, i don't see MAC address etc. Are there ways to fix that?

View 2 Replies View Related

Error - Unable To Start Activity ComponentInfo

Mar 4, 2012

I am getting this and can't seem to find out why?

Code:
03-04 14:04:41.565: E/AndroidRuntime(742): java.lang.RuntimeException: Unable to start activity ComponentInfo{com.ondrovic.boombozzpassport/com.ondrovic.boombozzpassport.BeerForm}: java.lang.IllegalStateException: get field slot from row 0 col -1 failed

Here is the code where I am trying to start the activity

Code:
private AdapterView.OnItemClickListener onListClick = new AdapterView.OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> parent, View v, int pos, long id) {
Intent intent = new Intent(getApplicationContext(), BeerForm.class);

[Code] ....

Also the activity will start if I take out the intent.putExtra(BeerForm.INTENT_BEER_ID, String.valueOf(id));

View 1 Replies View Related

Sprint HTC Hero :: Unable To Start Wireless Tether

Jun 7, 2010

I get an error saying Unable to start tether. Iam using fresh 2.1.

View 22 Replies View Related

HTC Hero :: Unable To Start WiFi - Intermittent Error

Nov 24, 2009

I seem to have an intermittent error when trying to start WiFi. Mostly (>95%) of the time I get "unable to start WiFi". Occasionally it works but this is rare and usually when it has been switched off for a few days. The problem occurs when I try to start via the wi-fi widget or via the MenuSettingsWireless controls path. I'm reluctant to do a factory reset unless I really have no other option.

HTC Hero
on Vodafone UK
Firmware version 1.5
Build# 2.73.405.5

View 2 Replies View Related

Sony Ericsson Xperia X10 :: Unable To Start Wifi/Bluetooth

Oct 18, 2010

I'm getting this problem where I can connect to WiFi the first time with no problem but once I disconnect and the phone sleeps, it can't connect to the network again and says "Unable to Start WiFi", I can't even get to Wireless settings because it can't start the WiFi.

It's the same story with Bluetooth. It'll work once.

If I turn the phone off and then on again, it will work once more but only ONCE before doing the same thing again.

View 15 Replies View Related

Android :: Activity Is Unable To Start Service In Same Package / What I Am Missing?

Jun 9, 2009

I have a service class my.app.MyService that I'm attempting to launch from my.app.MyActivity as follows:

Intent svc = new Intent( this, MyService.class );

The manifest contains the entries:

<uses-permission android:name="android.permission.ACCESS_BACKGROUND_SERVICE" />

<service android:name =".MyService" />

LogCat gives the message:

"Unable to start service Intent { comp={"my.app/ my.app.MyService" } } : not found"

Could someone kindly let me know what I am missing?

View 3 Replies View Related

Android :: Java.lang.RuntimeException: Unable To Start Activity ComponentInfo

Nov 8, 2010

I wrote an android app and so far it works perfect except for on one phone. It is the exact phone that I have with 2.2 on both phones and mine works perfect. The other phone is getting force close all the time but only when opening an activity that queries my image DB and tries to show a gallery. Every activity crashes in the same place, the viewimages. At first I thought it was the intent that was doing it but one of the activitys does not have the intent, it opens the images below the gallery. This works on the emulator, on my moto droid and on a few other different droids. Here is the code for the gallery and my bitmap decoder.

The error is below that.

CODE:..............

Here is the error

CODE:.....................

View 1 Replies View Related

Android : Unable To Start Service Intent Error In Client-Server Project / Fix It?

Feb 12, 2009

I am getting the below error when ever i am trying to call the bind service. 02-12 20:17:25.486: WARN/ActivityManager(58): Unable to start service Intent { action=oem.android.proj2.IRemoteService }: not found

I have created the Client-Server application. At the Server site i have used the AIDL to impliment the interfaces in my Service class. At Client site i have exposed the AIDL interfaces and have one Activity that mainly do the IPC mechanism , i mean ServiceConnection, bindService and then call the Serivce of the Client site. But i am getting the error i mentioned during the bindService call.

Could you please let me know the steps mainly i have to follow to run the Client -Server Application. For time being i am running the Client .apk first and then the Server .apk, but the server one giving me error.

It would be great if you could let me know what all permission short of thing to take care, as my Client and Server code are placed at different APks, so do i need to import the Client project in my Server Project, if yes then how to impliment that.

View 1 Replies View Related

Sony Ericsson Xperia X10 Mini/pro :: Unable To Start Phone Software Update Components

Nov 20, 2010

Got the update notification today in PC companion but when I try to update I get the error "unable to install or start phone software update components". I waited too long for this update.

View 8 Replies View Related

Android :: Unable To Start Activity - Load Home Screen Or Show Notification During Calls

Dec 18, 2009

Has anyone been successful showing a notification, starting an activity, or loading the home screen *during* a call on the Droid? All three of these actions can be done with the emulator running 2.0, but will not run from the Droid. I don't receive any type of notification that these actions fail on the Droid. Although, every action works when a call is *not* active. Missed calls during a call *do* show up in the notification bar, so I am hoping there is a way.

I understand that the notification bar can not be accessed by users during calls, but it would be nice if a notification could at least be delivered. I also understand the security and usability concerns of displaying a window or action during phone calls. Although, there are a lot of users who would like actionable functionality based on calls.

View 2 Replies View Related

Android : Get "unable To Start Wifi" / Need To Setup A Special User?

Oct 9, 2009

I have just installed Donut version 1.6 on my HTC Dream. The install went smoothly. But when I try to start my WiFi I get the "unable to start wifi" message. Never had a problem in 1.5. I see wpa_supplicant doesn't have access to others, I tried changing the permissions of the directories and wpa_supplicant.conf file to 777 but they keep getting set back again so that other doesn't have access. Do I need to set up a special user?

View 6 Replies View Related

Android :: Unable To Start Service Intent Service Not Found

Aug 20, 2009

I am getting following message when i try to launch service.Also is there any specific path on file system where we need to place the .apk file which contains my serivce component only.

View 2 Replies View Related

2.1 Update :: Unable To Install Or Start Software Update Components

Nov 19, 2010

I've been trying to update my phone now for nearly two weeks, trying various options, yet nothing I do helps in any way.I started off just running the update from SEUS with my phone as i've been using it.the updater started, gets about 70% through "Preparing" and pops up an error "Unable to install or start software update components." Closing which pops up "try again" or come to this site.I then tried uninstalling all installed components, same result as above.I then tried a Master Reset to factory setting, same result as above.I then disable the Firewall and the Anti-Virus, same result as above.Basically, i'm at the end of my tether, this should not be this difficult, I should not have to jump through this amount of hoops.If there was a way to legitimately root the phone (keeping warranty), I could already have Froyo installed, instead of this irritating mess thats causing me nothing but headaches.

View 4 Replies View Related

Samsung Captivate : WIFI "unable To Start"

Oct 28, 2010

Anyone having this problem?

View 1 Replies View Related

Android : Unable To Start Download In Default Android Browser

Jan 19, 2010

I want to download and install widget from page widgets.opera.com, i enter to this site: http://widgets.opera.com/general/getopera/3529/1.6/ and i am trying to download widget by pressing "Get Files Button". But instead of starting download, the site is only reloading. I`ve checked with wireshark, that serwer gives in response desired widget file with correct mime type. Any ideas why download isn`t started?

View 3 Replies View Related

HTC Magic :: "Unable To Start WiFi"

Feb 2, 2010

I bought a used unlocked Vodafone HTC Magic off of ebay, and got it setup with my Local GSM just fine. I can make calls, and receive texts no problem. Since I dont want a Data plan, I plan on relying on wifi for gmail services and whatnot. My problem is this. I cant get on wifi. When I go to settings>wireless controls> Wifi at the top says "Unable to start Wi-Fi" And no matter how many times I click it, it just wont start. When I go into Wi-Fi settings, "Add Wi-Fi network" is grayed out, and I cant add one. When I press the menu button while in that menu and select "Scan" It doesnt do anything, just goes away. Any ideas guys? I really want to get this phone working to its full potential.

View 9 Replies View Related

HTC :: How Long Does Your Desire Take To Start Up?

Oct 1, 2010

I saw this video, How long does your Desire take to start up?

View 13 Replies View Related

HTC Desire :: Phone Won't Start

Nov 5, 2010

I hope this is the right place to post this.I am using an HTC Desire running Android 2.2 from the Telus OTA update.I wanted to see the OS without the Sense UI so I went through Settings/Applications/Manage Applications select 'All' selected HTC Sense and hit the 'Clear defaults' button, it did nothing when I went back to the home screen, so I went back and 'hit 'Force stop' the phone restarted but was still using the Sense UI so I shut it down and tried to restart it immediately after the screen went black.The phone then vibrated 4 times in a row and did nothing. After that the phone would not start. The only thing I could do was remove the battery for a few seconds put it back in then start the phone up. Now I find the phone has an issue where if I don't give it a few seconds after shutting down it will do the 4 vibrates and then do nothing.The 'Clear defaults' option in the Sense UI is now always blocked out so I can not select it.Has this happened to anyone else? Is the vibrating then becoming a paper weight an issue due to the Sense UI issue or is that normal because I may not be giving it enough time to shut down or something?

View 2 Replies View Related

HTC Desire :: Cannot Get Past Start Up Screen

Jul 30, 2010

I had DJ Droid installed on my desire and I was trying to unroot it and put a stock 2.1 rom on so I could put Froyo OTA once it was released but I didn't get very far!I formatted my spare card sd card and wanted to make a new gold card as out of the two I used I wasn't sure which was the gold card.Whenever I turn on my phone it hangs on the HTC start up screen.I can hold power and volume down and get into HBOOT, go to recovery, volume up and get to Android system recovery <2e> Apply update.zip and it says No Such File even though I put it on but I may of wiped the partition during all this which has removed this file.When I try to mount the micro sd using an adapter and look at the files on it it says 'You need to format the disk in drive G:before you can use it.This happens for both cards. I try to format them but they both fail Anybody ideas apart from leave things how they are in future!

View 2 Replies View Related

HTC Desire :: Way To Format Phone Then Start Again?

Oct 22, 2010

I've been installing a few rom's recently using Rom Manager, my phone is rooted, I tried installing one, it downloaded and when I clicked wipe data & cache and ok, nothing happened... So I removed my battery and tried to start phone, and no start. Is there any way I can format my phone and then start again?

View 10 Replies View Related

HTC Desire : Way To Get Start Working Apk Files?

Aug 26, 2010

I fancy giving swype a try so i have downloaded the apk file but i now dont know what to do with the file i.e. how do i get it to start working?

View 8 Replies View Related

HTC Desire :: Any Settings For Changing Start Up Sound?

Aug 19, 2010

Does anyone know if you can change the start up sound when you turn the desire phone on? Ive had a look around the settings etc but cannot seem to find anything?

View 11 Replies View Related

HTC Desire :: How To Switch Off Loud Start Up Sound?

Apr 12, 2010

I cannot seem to find how to switch off the Loud HTC start up sound on the Desire.

View 21 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved