Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
tusing, around me, the signal is weak... one to two bars. 3g, however, works way better than before due to an improvement that VM sent me a text about a few weeks ago, along with the big bad we're gonna f with your data if you use more than 2.5gig (whatever). I occasionally use Wifi at home, not often due to the effects on battery life. Even on recent builds from mantera's source (CM7) I still get terrible battery life with Wifi on. Not really a big deal now that the system has been updated.
konspiracy, I know others like to use Wifi, but you didn't get exactly what I was getting at. Anyhow, if you have a fix, then by-all-means, go for it.
Speedtest results? I'm jelly nao!
Anyways, I didn't receive any new towers in my area or updates. All I did receive is the big bad 2.5 gig text message. T-Mobile's $30 a month plan is looking compelling right now (5 gigs of 4G data, unlimited normal data after that, and 100 minutes (I use around 30 minutes/month)) and I will probably switch to them in a year (provided they retain a similar plan).
Only if phones like the Galaxy Nexus didn't have a bajillion percent markup off-contract D:
Yumbrad, do you mind telling me how you learnt this Android development (process, online guides, etc)? I have a break coming up and was looking to delve into this stuff. Just don't know where to start, and Google was no help.
Really don't know if this is irrelevant, so mods delete this if needed.
Look up "newboston Java" on YouTube. I'm studying up while I can. It teaches you all about Java and he even has a playlist for developing android apps. I'm studying up while I can.
Go into your folder and delete all items except .git if you cant see it then its okay.
Now resync and tell me what happens.
Yumbrad, do you mind telling me how you learnt this Android development (process, online guides, etc)? I have a break coming up and was looking to delve into this stuff. Just don't know where to start, and Google was no help.
Also, don't think it was working before, but is now: auto portrait/landscape orientation flipping.
Then it clicked - the ps showed all the daemons in init.triumph.rc that had "class main" were running, and none that didn't. I went through adding "class main" to all the non-disabled services.
If you're referring to the main homescreens, they were working before. You had to check the option in the Settings to allow rotation though.
It's funny that you say that was the issue... when I was adding the class mains to the other daemons lines to get hw accelleration and sound and so on working, I was thinking "I wonder if I should add the same thing to the rest of the daemons..." and I then thought "Nah, it's not going to be a problem." Turns out that was a big "Doh!"
So that's all you had to do to get alot of the stuff working? Lol that sounds so simple.
Okay doing a quick look into the wifi problem, Do we have a broadcom wifi chip?
If so do we need a country code and can this script help us?
wifi country code problem ICS fix request (other than script) - xda-developers
... Hopefully this all will be useful/interesting to some. Like I said, often have to jump through a lot of investigative hoops to fix a silly simple problem One potential bonus - some of our other problems may stem from other daemons which weren't being started. Not sure why only class main now gets started in the vendor rc file.
- ctrl_interface=DIR=/data/misc/wifi/wpa_supplicant GROUP=wifi
+ ctrl_interface=wlan0 DIR=/data/misc/wifi/wpa_supplicant GROUP=wifi
- service wpa_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant -Dwext -iwlan0 -c/data/misc/wifi/wpa_supplicant.conf -dd
+ service wpa_supplicant /system/bin/wpa_supplicant -Dwext -iwlan0 -c /data/misc/wifi/wpa_supplicant.conf -dd
- setprop wifi.interface wlan0
+ setprop wifi.interface "wlan0"
+ setprop wlan.driver.status "ok"
Thanks for that link, quickly going through things, I noticed a few changes that may help. I won't be able to try this out myself for a while, but if someone has the time, these changes may help get wifi working:
files/etc/wifi/wpa_supplicant.conf
init.triumph.rcCode:- ctrl_interface=DIR=/data/misc/wifi/wpa_supplicant GROUP=wifi + ctrl_interface=wlan0 DIR=/data/misc/wifi/wpa_supplicant GROUP=wifi
(note the space between -c and /data/misc/wifi/wpa_supplicant.conf)Code:- service wpa_supplicant /system/bin/logwrapper /system/bin/wpa_supplicant -Dwext -iwlan0 -c/data/misc/wifi/wpa_supplicant.conf -dd + service wpa_supplicant /system/bin/wpa_supplicant -Dwext -iwlan0 -c /data/misc/wifi/wpa_supplicant.conf -dd
Code:- setprop wifi.interface wlan0 + setprop wifi.interface "wlan0" + setprop wlan.driver.status "ok"