[Q] G1 rom without phone bulk? - G1 Q&A, Help & Troubleshooting

Hi All
Straight to the point:
Is it possible to create a rom that is very light wieght such that it no longer has the capacity to function as a phone (no phone.apk, no sim reading, no 3g). So it is just a wifi tablet. And in doing so will this free up memory/space/speed up the device.
Basically is it possible, or is it strongly coupled within the android source?
Best Regards
DarkFlare

I imagine things like phone and mms.apk would be easy to remove, but things like the network location reporting service would be a good deal more difficult.

Settings/Wireless & networks/Mobile networks:
Uncheck "Data enabled"
Settings/Location & security:
Uncheck "Use wireless networks"
Uncheck "Use GPS satellites"
Now set up your wifi connection and you've got exactly what you're asking for.
Removing apks doesn't help performance in any way whatsoever. You free up space in /system, but that's just about it and, since that partition is read-only, there's no benefit to having more free space on it, you wouldn't be able to use it anyway.
Also note, removing TelephonyProvider.apk also has a chance (it did in cupcake back when I had the same stupid idea) of disabling ALL your wireless connections, including wifi.

Seemed like a good idea.

It's like a step in the wrong direction. In this day and age where you can take your internet anywhere, I see no purpose on gimping a device capable from it's wireless data connectivity.
The device supports all of those features (phone, data) so why keep them unused?
I know that for some of us it feel like carrying features we don't use is like carrying extra weight, but, when you thing about it, the features are still there even if you remove access to them...
This might be what you want instead: http://www.engadget.com/2010/07/26/augens-150-android-tablet-hits-kmart-circular-coming-to-store/

Well, what if someone does not need the telephony functions? Disabling them will not remove or unload them from RAM, so it will take same amount of memory, but if he wants to have them unloaded, he's got to remove them.

I think this would be cool. I wanted to do something simliar with my MT3G when I geta new phone so I could basically turn it into my remote control for things like XBMC. Figured fully removing things such as Phone, 3G, Bluetooth, basically only leaving wifi would save heavily on battery.
Then again I guess I could turn all that stuff off as well.

edru said:
I think this would be cool. I wanted to do something simliar with my MT3G when I geta new phone so I could basically turn it into my remote control for things like XBMC. Figured fully removing things such as Phone, 3G, Bluetooth, basically only leaving wifi would save heavily on battery.
Then again I guess I could turn all that stuff off as well.
Click to expand...
Click to collapse
My thoughts exactly.

biglo said:
My thoughts exactly.
Click to expand...
Click to collapse
edru said:
I think this would be cool. I wanted to do something simliar with my MT3G when I geta new phone so I could basically turn it into my remote control for things like XBMC. Figured fully removing things such as Phone, 3G, Bluetooth, basically only leaving wifi would save heavily on battery.
Then again I guess I could turn all that stuff off as well.
Click to expand...
Click to collapse
This is precisely what I am aiming to achieve. Personally I use EventGhost to controll my win 7 pc, but any remote app would do.
jubeh said:
Settings/Wireless & networks/Mobile networks:
Uncheck "Data enabled"
Settings/Location & security:
Uncheck "Use wireless networks"
Uncheck "Use GPS satellites"
Now set up your wifi connection and you've got exactly what you're asking for.
Removing apks doesn't help performance in any way whatsoever. You free up space in /system, but that's just about it and, since that partition is read-only, there's no benefit to having more free space on it, you wouldn't be able to use it anyway.
Also note, removing TelephonyProvider.apk also has a chance (it did in cupcake back when I had the same stupid idea) of disabling ALL your wireless connections, including wifi.
Click to expand...
Click to collapse
I understand what your saying however Im not looking to just deprive connectivity. I figure if the phone doesnt have a Sim card then theres no reason for it to have the ability to recieve sms so remove all the apps that are setting up broadcast recievers for sms, and/or the code that is emitting the broadcast reciever for sms. This is just an example. But there must be things that can be removed that relate to the sim/phone side.
The tablet you linked too doesnt interest me at all since its a new device and my goal is to repurpose an old (and loved =P) device.
Any rom devs care to kick in there two cents about how achievable any of this is? Removing apk's just seems partially cosmetic as Im thinking its more core than that.
Also thanks to all who have provided responces, its great to have some discussion about this

I will take a Froyo ROM and strip it for you, some time next week.

sleepyfu said:
I will take a Froyo ROM and strip it for you, some time next week.
Click to expand...
Click to collapse
Sounds ace, could you detail some what your planning on doing? Since Im not planning on retiring my g1 just yet but would love to know the steps to create a rom like that further down the line!

you just need to read the cm wiki and you'll find what you need

SO if I understand it right, you want to make it so your phone cannot connect to any GSM service, am I right? And you would like to be able to still use the internet with wifi. Removing APK's or editing framework or the kernel won't change anything. The only way to completely achieve what you want is installing a radio that only supports wifi. No such radio is currently available. You will have to code your own. lbcoder proved that a mismatching radio+SPL=brick, so if I was you I wouldn't be messing with that. Best advice I can give is to switch to airplane mode.

So basically, you want to use your device like an iPad or iPod Touch? Correct me if i'm wrong.

The real thing I still have a problem with is that, as far as I can tell, OP is still thinking that there's some benefit to removing apps rather than just disabling data.
Sure, you can do it, but there's really no point, no benefit, nothing.
Krician said:
So basically, you want to use your device like an iPad or iPod Touch? Correct me if i'm wrong.
Click to expand...
Click to collapse
If that's the case, and I'm on the right track, then I guess you'd also like the build coming together nicely.
I'm not a fan of force-closes, and if you remove stuff, you're bound to find points in the OS where pressing the wrong thing (for example, on Gallery app, choosing the "send via MMS" option) will give you a force-close.
I guess if you want a MID-esque build that actually comes together nicely (ie, disables all menu options and anything else that would cause a force-close due to just plainly removing apks), then I do guess you have a nice project on your hands.
A straight build from AOSP should give you something close, don't know if you'd want Market and Gapps too.
I guess I'll get your mind jogging. Ok, so imagine you do make such a build, then you're still dealing with the fact that your phone still has the hardware and, because of it's nature (a system-on-chip), the radio, etc, are still consuming battery.
You'll never be able to remove everything and you'll always have that itch for "now how do I get rid of this?"...

mejorguille said:
SO if I understand it right, you want to make it so your phone cannot connect to any GSM service, am I right? And you would like to be able to still use the internet with wifi. Removing APK's or editing framework or the kernel won't change anything. The only way to completely achieve what you want is installing a radio that only supports wifi. No such radio is currently available. You will have to code your own. lbcoder proved that a mismatching radio+SPL=brick, so if I was you I wouldn't be messing with that. Best advice I can give is to switch to airplane mode.
Click to expand...
Click to collapse
.. one thing to note is that the mismatched radio/spl brick was due to the KERNEL not booting. Things like FASTBOOT still work, and the only reason they are inaccessible is that the MISC partition is telling the SPL to boot recovery.
Something that recently occurred to me is that it may be possible to replace the radio code with something a little more generic, like redboot http://ecos.sourceware.org/ecos/hardware.html . If you disable the radio processor and don't allocate any memory to it (or very very little), you may even be able to reclaim the memory otherwise being lost to it, i.e. the device actually has 192 MB of RAM, but we only have <100 available to Android.
http://ecos.sourceware.org/fom-serv/ecos/cache/27.html
** doesn't that look just perfect?
Someone correct me if I'm wrong, but I think that the radio processor is exclusively for cell service and that wifi and bluetooth don't depend on it. If this is the case, then you'd be able to use it as a fully functional wifi phone with 192 MB RAM. Even if this is incorrect, read the next paragraph for alternative. Or, of course, a bluetooth or wifi dongle.
A second interesting thought.... USB host mode + UMTS modem = cell phone with cell phone service (or at least VoIP) with 192 MB RAM. Side effect being, of course, that there is a usb dongle duct taped onto the back of the phone, but for adding in close to an extra 100 MB of ram, worth it?
I think that at this point, people should start looking into crazy ideas and weird hacks. Some of this stuff is *DEFINITELY* possible. Even weird things may be possible, like taking over the radio core as a second CPU core (albeit a slower one). Its not like the radio core is a mystery... its an ARM9, so its a simple (eh, in theory) matter of shoving something in that is built for the appropriate instruction set.

lbcoder said:
Someone correct me if I'm wrong, but I think that the radio processor is exclusively for cell service and that wifi and bluetooth don't depend on it. If this is the case, then you'd be able to use it as a fully functional wifi phone with 192 MB RAM.
Click to expand...
Click to collapse
Hey, if you're willing to give it a shot, I have a G1 that I'm willing to torture to death. I'm not a dev but I can certainly test stuff out and get logs and I don't care if I brick that thing.

lbcoder said:
.. one thing to note is that the mismatched radio/spl brick was due to the KERNEL not booting. Things like FASTBOOT still work, and the only reason they are inaccessible is that the MISC partition is telling the SPL to boot recovery.
Something that recently occurred to me is that it may be possible to replace the radio code with something a little more generic, like redboot http://ecos.sourceware.org/ecos/hardware.html . If you disable the radio processor and don't allocate any memory to it (or very very little), you may even be able to reclaim the memory otherwise being lost to it, i.e. the device actually has 192 MB of RAM, but we only have <100 available to Android.
http://ecos.sourceware.org/fom-serv/ecos/cache/27.html
** doesn't that look just perfect?
Someone correct me if I'm wrong, but I think that the radio processor is exclusively for cell service and that wifi and bluetooth don't depend on it. If this is the case, then you'd be able to use it as a fully functional wifi phone with 192 MB RAM. Even if this is incorrect, read the next paragraph for alternative. Or, of course, a bluetooth or wifi dongle.
A second interesting thought.... USB host mode + UMTS modem = cell phone with cell phone service (or at least VoIP) with 192 MB RAM. Side effect being, of course, that there is a usb dongle duct taped onto the back of the phone, but for adding in close to an extra 100 MB of ram, worth it?
I think that at this point, people should start looking into crazy ideas and weird hacks. Some of this stuff is *DEFINITELY* possible. Even weird things may be possible, like taking over the radio core as a second CPU core (albeit a slower one). Its not like the radio core is a mystery... its an ARM9, so its a simple (eh, in theory) matter of shoving something in that is built for the appropriate instruction set.
Click to expand...
Click to collapse
that's so what i (and i think OP here) want. at least the first part. 64 mb of ram reclaimed goes a LONG way to functionality of the device.
the rom should be named G1 Touch ^_^

lbcoder said:
Someone correct me if I'm wrong, but I think that the radio processor is exclusively for cell service and that wifi and bluetooth don't depend on it. If this is the case, then you'd be able to use it as a fully functional wifi phone with 192 MB RAM. Even if this is incorrect, read the next paragraph for alternative. Or, of course, a bluetooth or wifi dongle.
Click to expand...
Click to collapse
On MSM7201A, the modem "owns" the bulk of the clock control registers and the PMIC (and thus voltage rail control), and Linux issues low level rpc calls (proc_comm) to the modem to control clocks and power. Also the modem is responsible for handling power collapse and sleep modes.
If you're going to replace the stock modem firmware, you're going to need to somehow provide this functionality in its place, otherwise Linux is dead in the water.
Brian

Related

ATT, tethering and download limits

Hello all,
First of all I am new here and to hacking phones. Plenty of experience hacking everything else though. lol
I am a real estate agent. Finally, the ATT HTC Tilt is a device that will meet my needs! I do not want to pay for the tethering plan. The basic 20MB/$30 per month data plan may or may not be enough for me so I need some advice. For $10 more, I may just get the $40 unlimited PDA deal which does not include tethering.
1st - All I will need the device for is emails and checking the MLS websites. I can get an idea of my email amount but what is an average web page?
2nd - I know I can tether without paying them for it and I plan on doing so. I am not going to download huge files. I would just like to connect my laptop, cruise the Multiple Listing Service website and be able to show clients the data on a nice big laptop screen. Do you think that would send ATT any red flags?
3rd - If I use some of the hacks/ROMs here to get rid of the ATT garbage (as I have read this is a smart thing to do) will it effect my ability to tether?
Occasionally I may have to download a a 5 or 10 MB PDF form. Normally, I would already have that on my laptop ahead of time though.
Thanks for your opinions and guidance. I know some of these questions have been addressed but I just wanted to confirm this for my situation since I will be leaving Verizon for ATT and buying a new phone and cannot afford to screw up. lol
By the way, this website rocks!!! A true treasure!
1. Average website is about 2KB to 100KB, depending on the number of images. Things like flash animations, videos, sound, or very large images will make pages much bigger.
2. Make sure your bandwidth usage is not huge, and it will not set off any red flags, there is no way for them to know you are tethering besides guessing based on your bandwidth usage. With the $40 PDA plan, the "limit" is already pretty high, so you don't have much to worry about.
3. Won't affect you ability to tether, as long as the ROM you chose still has the internet sharing software still on it. The stock HTC ROM does have it, but some of the "light" ROMs may not. Many people actually seem to like the stock AT&T ROM, after tweaking it. Consider these tweaks instead of reflashing, as reflashing will void your warantee.
Jozer99 said:
3. Won't affect you ability to tether, as long as the ROM you chose still has the internet sharing software still on it. The stock HTC ROM does have it, but some of the "light" ROMs may not. Many people actually seem to like the stock AT&T ROM, after tweaking it. Consider these tweaks instead of reflashing, as reflashing will void your warantee.
Click to expand...
Click to collapse
Jozer is totally correct, DO NOT FLASH it, just tweak it. The AT&T ROM is fine after you stop the bloatware install. To do that, when you first get the device and boot it up you will have to go thru the normal OS prompts (time, screen alignemnt, password, etc) then you will see a dialog that says that it will customer the device in 3 seconds. Reboot the device before the 3 seconds are up and none ofthe bloatware will be installed.
Then, just tweak away will all the cool cabs here on this site (of course, I mean the cabs for the Kaiser).
WOW...good stuff and made crystal clear too. Thanks so much guys. I would like to just tweak as you both recommend since I have enough headaches and don't want to get radical in the first few months of a new plan any way.lol
Does anyone recommend dealing with ATT directly or can I find a better deal online without customer service headaches if help is needed down the road? I have never bought from online, I always went directly to the store.
I have seen some good prices on the http://www.letstalk.com/product/browse.htm?pgId=100 website.

remove or disable camera

I work for the government and for the next few weeks will not be able to have a phone that can take pictures with me. Is there a way I can either remove or disable the camera function so I can show that I can not take pictures with my phone.
I was gonig to say you can request a ROM, however I just took my laptop to Best Buy today to get it fixed so i can't cook. What i suggest is that you download XDA Live 2.0 and use it for the meantime since it doesn't come with a camera.
You can download a 20270 kaiser kitchen from ppckitchen.org. I think the camera OEM is optional in it, but if not, it's easy to identify which package is the camera and delete it. As an alternive, you can probably just reassign the camera button to a non-existent app and that will essentially disable it to the casual observer.
Most secure facilities don't want you to have the hardware, regardless of whether it is functional or not.
gguruusa said:
You can download a 20270 kaiser kitchen from ppckitchen.org. I think the camera OEM is optional in it, but if not, it's easy to identify which package is the camera and delete it. As an alternive, you can probably just reassign the camera button to a non-existent app and that will essentially disable it to the casual observer.
Most secure facilities don't want you to have the hardware, regardless of whether it is functional or not.
Click to expand...
Click to collapse
I will look at trying to disable the camera button. I will also look at the 2027 kitchen. I have not been able to get any kind of cooking to work though. I think the main problem is vista. I am not going to be in a very secure place, just a place that has made stupid rules haha.
kareem9nba
if that dosen't work or fly whit where I am going I will go your route thank you for the suggestions.
I also work for the government and if the phone has a camera on it period it is not allowed into secure sites period no matter if the "ROM" has it disabled. once they see that it has a camera its a security risk and the guards that do the intakes could careless that it doesn't work, as long as there is a camera there they will take it until you leave or worse take it for good. the best bet is leave it in the car when you go into secure areas that has always worked for me Also the kaiser can be used as a storage medium so it probably won't be allowed anyway. Since no type of storage media is allowed. Also it depends on how secure the site your going into is
I to Contract for the Goverment!
I agree with Austinsync since there is a Camera lens on it you will not get by Security. Also the fact that it can store data via internal memory and well as transmit via sms,mms and internet there is no way you will talk your way by Security. You could glue a piece of glass on a Sucrets can and they would take it away from you. In fact I had to sign a form stating that if I do bring in something like that in they have the right to take it. and you may not get it back. Where I am PDA's are not aloud ,Anything that can be used to transport data is a risk to them. So don't bother looking for a rom, leave the phone in the car besides most government facilities jam cell calls anyway so having a phone is of no use when your inside the building.
Ed...
I just have a "dumb" phone from back in the day. Just a basic as basic gets cellular. Still useless when im on site due to jaming
I don't work for the federal government. I work for the PA state Gov. I am being sent for training. The place I am going is not secure. No security. They say no cells because they don't want them going off during class. And since we have to stay over night they don't want people running around taking pictures of everything and everyone. We can have cells if we use them as alarms though. I think that if the camera is disabled or would say "no camera" if the button was hit that it would be sufficient for my situation. Even Kareem's suggestion probably would be enough to make the trainers happy if they would say anything. If not I will leave it in my car and go from there.
Also sorry about the post in the wrong area.

App needed!!! task manager

Is there any application to kills all open app on the phone"aka task manager"
Is there a possibility to colse with one click all 2g-3g connection.
I received the phone yesteday and i was charged of 55 euros ....
mastercut said:
Is there any application to kills all open app on the phone"aka task manager"
Is there a possibility to colse with one click all 2g-3g connection.
I received the phone yesteday and i was charged of 55 euros ....
Click to expand...
Click to collapse
You mean you want to turn off the radio?
Simple method is to go to Settings -> Wireless controls -> Airplane mode. NOTE: This turns off all radios, including WiFi.
If you want a icon to do this, go to the Market and download AnyCut and make a shortcut to Airplane mode.
no not turn off the radio , just close all open connection. cuz i can't see if there's some connection open !!!!!!
A little more description on your dilema would be apreciated.
Who charged you 55 euros?
Are you talking about data transmissions?
If your phone is on and you have service with some provider AND haven't installed any apps that require streaming data, you should not have any "open connections" as you say.
mastercut said:
no not turn off the radio , just close all open connection. cuz i can't see if there's some connection open !!!!!!
Click to expand...
Click to collapse
anycut to 'phone info' might help.
'service viewer' in marketplace, but without root cant kill ;{
mastercut said:
Is there any application to kills all open app on the phone"aka task manager"
Is there a possibility to colse with one click all 2g-3g connection.
I received the phone yesteday and i was charged of 55 euros ....
Click to expand...
Click to collapse
No need for a task manager as the device closes programs on its own.
To disable all data connections use anycut to phone info (like said above) and then menu -> more and you can disable data connection for just that time or disable it on boot to disable forever.
If you were charged 55 euros for using data then you need to get a different phone as this phone is meant for an always on connection so it is connected 24/7
Well I have the same issue. There are no affordable dataplan in the country I live in so letting any application use as much network as it feels like is not an option.
Sadly the phone does not have a way to control who's allowed to use the radio/network or anything for that matter past the installation time. So if pong3d has been installed with full network access you're screwed it can wake up at any time and start streaming whatever it wants from and to your phone. It can even clog your bandwidth and make your browsing suck.
I understand the whole fully connected device thing, but I still think this is a major flaw as users end-up with limited control over what application is doing what. There should be a way to disable data connection, like disabling wifi.
And ultimately there should be a way to manage the permission of the various app. I want to run pong3d but there is no way I'm giving it Contact Access and SMS access and "service that cost you money". Or I want a fair warning "accept/deny" whenever the application tries...
It also happens that people travel (like me) to other countries. And when traveling I use local pre-paid SIM card to avoid roaming fees. I don't need gtalk and MarioSimulator (yeah it does check for update when you launch it) to burn through my credit just because they think they can.
Since we had networking on phone they have been asking you if you wanted to allow the application to connect "Always/Never/Just this time". If Android expect to be used on other devices (so other providers, other countries, other dataplan) that feature will be needed. And the all or nothing attitude towards permissions when installing an app must be changed.
In the mean time, I suggest the original poster do what I do.. Delete all your APN settings and re-add them when needed. In my case just changing one letter in the APN seems to be enough.
my 2p.
mrboyd said:
Well I have the same issue. There are no affordable dataplan in the country I live in so letting any application use as much network as it feels like is not an option.
Sadly the phone does not have a way to control who's allowed to use the radio/network or anything for that matter past the installation time. So if pong3d has been installed with full network access you're screwed it can wake up at any time and start streaming whatever it wants from and to your phone. It can even clog your bandwidth and make your browsing suck.
I understand the whole fully connected device thing, but I still think this is a major flaw as users end-up with limited control over what application is doing what. There should be a way to disable data connection, like disabling wifi.
And ultimately there should be a way to manage the permission of the various app. I want to run pong3d but there is no way I'm giving it Contact Access and SMS access and "service that cost you money". Or I want a fair warning "accept/deny" whenever the application tries...
It also happens that people travel (like me) to other countries. And when traveling I use local pre-paid SIM card to avoid roaming fees. I don't need gtalk and MarioSimulator (yeah it does check for update when you launch it) to burn through my credit just because they think they can.
Since we had networking on phone they have been asking you if you wanted to allow the application to connect "Always/Never/Just this time". If Android expect to be used on other devices (so other providers, other countries, other dataplan) that feature will be needed. And the all or nothing attitude towards permissions when installing an app must be changed.
In the mean time, I suggest the original poster do what I do.. Delete all your APN settings and re-add them when needed. In my case just changing one letter in the APN seems to be enough.
my 2p.
Click to expand...
Click to collapse
I completely understand where you are coming from and I think once the OS comes out of beta it will be a lot better. In the meantime I think it is easier to do the method I did above as it just turns off the data connection and doesn't change any other settings. And you can turn it on or off on the fly.
neoobs said:
I completely understand where you are coming from and I think once the OS comes out of beta it will be a lot better. In the meantime I think it is easier to do the method I did above as it just turns off the data connection and doesn't change any other settings. And you can turn it on or off on the fly.
Click to expand...
Click to collapse
Don't mean to derail the converstaion but... Google, out of BETA? ROFLOL!!!
That'll be the end of life as we know it!
Anyways... going back to the subject. Your trick is neat and I don't need it (T-mobile customer with unlimited data) but still usefull.
@ mrboyd:
As neoobs stated, you'll have to do that workaround untill Google does add such a feature, but unless you give enough stink (complain) about it, they won't listen.
You could go here to developers and see if anyone is doing something about it and "ask" for such a "feature"
http://groups.google.com/group/android-developers
Also, where are you located? Who's your service provider? What data plans do they have there, or don't?
On the same topic... if someone notices they have no data connection and want to enable it follow the same directions. I did this the other night when tmobiles towers were down. It helped me get connected again.
Does this thing works? I have tried playing with it a little bit and it didn't seem to do much. I'll give it another shot.
mrboyd said:
Does this thing works? I have tried playing with it a little bit and it didn't seem to do much. I'll give it another shot.
Click to expand...
Click to collapse
what 'thing' ?!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!

[Q]about wifi packet sniffing and skype

So apparently, I can't bring my laptop everywhere to get my thing done, but I had a thought of referring that to my phone. I find any trusted app/script to get the packets to cap file that would sit down in my sd card for further use. I'm not some evil mastermind that would go stealing anything(don't need anything now dough) This is purely for learning since I'm still learning about IT but trying to get ahead and since android is something that I'm still not sure of how it works.
And my other question: How can I get video calling on skype? I'm assuming it should work with GindgerDX but it doesn't.
Bahurs1 said:
So apparently, I can't bring my laptop everywhere to get my thing done, but I had a thought of referring that to my phone. I find any trusted app/script to get the packets to cap file that would sit down in my sd card for further use. I'm not some evil mastermind that would go stealing anything(don't need anything now dough) This is purely for learning since I'm still learning about IT but trying to get ahead and since android is something that I'm still not sure of how it works.
Click to expand...
Click to collapse
The question is ... why would you want to run a packet capture? The payload data in the packets is encrypted anyway - so there's no real way to (assuming evil intentions) crack down on the convos of other users being in the same WLAN/LAN segment. If you're worried about Man-in-the-middle attacks take my word that it won't work. If you wiretap a Skype<->Skype chat/call via a man-in-the-middle attack the connection would fail as Skype would recognize that the end-to-end encryption is borked.
Anyhow, whatever your idea is ... Google for "Pixie" ... that's a network sniffer for Android, and the only one I happen to know (as real men use tcpdump or Wireshark for network analysis anyway).
Bahurs1 said:
And my other question: How can I get video calling on skype? I'm assuming it should work with GindgerDX but it doesn't.
Click to expand...
Click to collapse
No. Skype Video only works on a selected range of devices (read up on the description in the Market) having a FRONT camera (a camera that's facing you and not a camera that's at the back of your device facing away from you).
Look around on XDA/Google (in other words: SEARCH!) and you will find out that there's a hacked version that has Video enabled for some additional devices, though I don't know if that would support the back camera of the W8/X8.
Yeah I'm kinnda sorry for the dumb question about skype cause I just always forget to look it up when I sit down on the web.
As for the sniffer thing. I dont know who would ever need to investigate packets affcourse I need to get the password. The sicuation is hard to explain, but lets say I need to prove that 14digs of just numbers is a stupid idea for long range wifi access password.
I cant get my laptop there so I need an alternative to get some packets and then easily get the password at home and as I sayed I'm not a genius in IT but I know how to use some of the features that backtrack provides.

S4 Active as reliable USB-tethered modem ?

I would like to use S4 Active as reliable USB-tethered modem in remote location. Phone is rooted already.
My concern is this: if phone is "frozen", or gets reset in far-away location (where I need internet) - what options would I have to bring phone/tethering back up, without being physically next to the phone ?
Plan to use Raspberry PI with OpenWRT as a router to the phone.
(by the way - reason for NOT using USB modem - my unlimited data service is only for "phone" APN, so provider has a problem with known modem dongles, and repairing IMEI seems to be impossible to find for the dongle i have).
You need to know what kind of bugs you expect, but use tasker to check connection, and if the check fails, do something (whatever the solutions are to your bugs)
saahleh said:
You need to know what kind of bugs you expect, but use tasker to check connection, and if the check fails, do something (whatever the solutions are to your bugs)
Click to expand...
Click to collapse
thanks, will take a look at tasker, looks similar to ITTT.
Similar, but much more customizable. And harder to setup.

Categories

Resources