[Review & How-to] Use ADB Wirelessly and How to Remove Carrier Bloatware from Android - EVO 4G Android Development

[Review & How-to] Use ADB Wirelessly and How to Remove Carrier Bloatware from Android
I think this could go in a few of the different forums, but I'll stick it in here and the mods can decide.
I’m getting excited about all the apps that are letting me do things wirelessly on Android. SwiFTP made things a lot easier with its ability to set up your phone as a server that you can connect to from your PC. Today, we’ll take a look at adbWireless, which in essence does the same thing, but adds the ability to use adb wirelessly. The most important thing, for many, that this will allow you to do is remove carrier bloatware, that is, get rid of preinstalled apps. In today’s video, I’ll show you how to use adbWireless and how to remove preinstalled apps so that you can have your phone running in tip top shape.
How to Remove Carrier Bloatware from Android

"How to use an app" and promoting of great app finds belongs in the "themes and apps" forum. Hacking the phone outside of just using an app is what belongs here.
Sent from my PC36100 using XDA App

sombdy said:
"How to use an app" and promoting of great app finds belongs in the "themes and apps" forum. Hacking the phone outside of just using an app is what belongs here.
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
Exactly, which is part of the video. Did you watch it. There's a whole hacking section about removing bloatware. Thats part of development, no?

I don't know if I'd consider remounting the fs to be development. Nevertheless, good job showing the newbs.
I'll make one small addition though - if you can't delete anything from /system/app, exit the adb shell and run:
adb remount -ro
That mounts the filesystem as read / write so that you can make changes. I'd suggest doing:
adb remount -r when finished.
ALSO - Why the hell do you mention Terminal for Mac, and Command Line for Windows, but leave the Linux crew out???

Doward said:
I don't know if I'd consider remounting the fs to be development. Nevertheless, good job showing the newbs.
I'll make one small addition though - if you can't delete anything from /system/app, exit the adb shell and run:
adb remount -ro
That mounts the filesystem as read / write so that you can make changes. I'd suggest doing:
adb remount -r when finished.
ALSO - Why the hell do you mention Terminal for Mac, and Command Line for Windows, but leave the Linux crew out???
Click to expand...
Click to collapse
touche my friend my bad lol.
and yeah its not development per se, but definitely not any of the other topics.
and good point. now that i think of it, i'm not sure why it let me do it since i didnt remount as read/write

Very nice app. I will be trying it soon.
There is actually another very simple way to remove bloatware that doesn't require a computer.
First off, you must have a rooted phone.
Then install titanium backup and allow superuser permissions.
Go into settings and enable chuck Norris mode.
Then just find any app you want gone, click it and press uninstall.
Just offering another way to solve the same problem. Great app tho. It will definitely be worth trying.

Clay333 said:
Very nice app. I will be trying it soon.
There is actually another very simple way to remove bloatware that doesn't require a computer.
First off, you must have a rooted phone.
Then install titanium backup and allow superuser permissions.
Go into settings and enable chuck Norris mode.
Then just find any app you want gone, click it and press uninstall.
Just offering another way to solve the same problem. Great app tho. It will definitely be worth trying.
Click to expand...
Click to collapse
Yeah Chuck Norris mode for TB came out after I made this vid. Definitely gonna include it in my TB review

@ OP, nice find!! i got tired of that having to plug in just to run ADB, using this from now on. Do you know if it breaks anything by removing required apk's?
djR3Z said:
Yeah Chuck Norris mode for TB came out after I made this vid. Definitely gonna include it in my TB review
Click to expand...
Click to collapse
sombdy said:
"How to use an app" and promoting of great app finds belongs in the "themes and apps" forum. Hacking the phone outside of just using an app is what belongs here.
Sent from my PC36100 using XDA App
Click to expand...
Click to collapse
dude, let the mods be mods. Why does everyone try and be the forum police?

djR3Z said:
Yeah Chuck Norris mode for TB came out after I made this vid. Definitely gonna include it in my TB review
Click to expand...
Click to collapse
Oh Ok, I didn't realize it had been updated to include it. Either way I was not trying to down your thead/video, the wireless ADB is nice. I have actually used it a few times since I was the video and really like it. Great find!!
System apps can also be deleted through root explorer. JUST BE CAREFUL and have a backup before you start playing around in the system folder.

djR3Z said:
I think this could go in a few of the different forums, but I'll stick it in here and the mods can decide.
I’m getting excited about all the apps that are letting me do things wirelessly on Android. SwiFTP made things a lot easier with its ability to set up your phone as a server that you can connect to from your PC. Today, we’ll take a look at adbWireless, which in essence does the same thing, but adds the ability to use adb wirelessly. The most important thing, for many, that this will allow you to do is remove carrier bloatware, that is, get rid of preinstalled apps. In today’s video, I’ll show you how to use adbWireless and how to remove preinstalled apps so that you can have your phone running in tip top shape.
How to Remove Carrier Bloatware from Android
Click to expand...
Click to collapse
Why is the wireless connection required?
Do the phone and the adb computer need to be on the same subnet?
Can this be done over ip?

I saw adbwireless on a blog this morning. The obvious use for me was to put the android-sdk folder on a USB drive that I keep on my keyring so that if I need to do something from another PC, I don't have to download and find the sdk. I can then connect the phone wirelessly after launching a cmd prompt from the USB drive. Makes it great for my work laptop, where I don't want those files sitting around to be scanned.

Thanks for the info on the app it works great. The only problem I had was in the adb command. Could never use it on my macbook pro always had to go the darkside to do adb commands. After watching your video noticed that you placed a ./adb connect ip: port. I was missing the ./ to get the adb commands to work. So not only did this show me a great app but also taught me how to use adb in terminal.

Andy S said:
I saw adbwireless on a blog this morning. The obvious use for me was to put the android-sdk folder on a USB drive that I keep on my keyring so that if I need to do something from another PC, I don't have to download and find the sdk. I can then connect the phone wirelessly after launching a cmd prompt from the USB drive. Makes it great for my work laptop, where I don't want those files sitting around to be scanned.
Click to expand...
Click to collapse
I LOVE your use of this. Great tip!!! I'm gonna set this up asap
islandreamer said:
Thanks for the info on the app it works great. The only problem I had was in the adb command. Could never use it on my macbook pro always had to go the darkside to do adb commands. After watching your video noticed that you placed a ./adb connect ip: port. I was missing the ./ to get the adb commands to work. So not only did this show me a great app but also taught me how to use adb in terminal.
Click to expand...
Click to collapse
I'm glad I could help! Yeah its a minor little thing, but it makes everything work

genius! Loading this up as we speak as well
Andy S said:
I saw adbwireless on a blog this morning. The obvious use for me was to put the android-sdk folder on a USB drive that I keep on my keyring so that if I need to do something from another PC, I don't have to download and find the sdk. I can then connect the phone wirelessly after launching a cmd prompt from the USB drive. Makes it great for my work laptop, where I don't want those files sitting around to be scanned.
Click to expand...
Click to collapse

Related

PC USB connectivity

Hello,
I have a HTC G1 and I couldn't get the windows recognize the device. Guess it needs a driver before I can install apps to test it on the phone. I was referred to this forum by someone in the Android Developers forum. Do you guys have any insight?
Thanks,
mdashali
mdashali said:
Hello,
I have a HTC G1 and I couldn't get the windows recognize the device. Guess it needs a driver before I can install apps to test it on the phone. I was referred to this forum by someone in the Android Developers forum. Do you guys have any insight?
Thanks,
mdashali
Click to expand...
Click to collapse
you have one? like sitting in front of you and you can touch it? and to answer question it doesnt sync with computer it syncs with google over the air...
Yes, it was right in front of me a few minutes go. It has gone for a walk around other cubes.
Won't you need to have some connectivity with the PC to use the ADB?
If by "ADB" you mean contacts, all that is sync'd with Google online. Nothing has really been said about connectivity with any desktop PCs yet.
beartard said:
If by "ADB" you mean contacts, all that is sync'd with Google online. Nothing has really been said about connectivity with any desktop PCs yet.
Click to expand...
Click to collapse
I have developed an application using the emulator and now wanted to test on the device. How can I load it on the phone? Could you explain the process?
Thanks.
You already have a jump on most of us by actually *having* the phone. A micro-SD card would probably be your best bet.
I have one too, and am having the same USB connectivity problems. The SD card shows up as a USB Mass Storage Device. It wants another driver for what it says is "Android Device".
According to what we've heard so far (here and on tmonews) that's exactly what's expected to happen.
mdashali said:
Yes, it was right in front of me a few minutes go. It has gone for a walk around other cubes.
Won't you need to have some connectivity with the PC to use the ADB?
Click to expand...
Click to collapse
how is it possible if g1 release is on oct 22nd?
from all the press releasinfo and various blogs, its beenreported a fe hundred times that the G1 will not sync in any way, shape, or form ith a pc. This also means that youcan not try to install any app on the device through a pc like you can with a pocket pc. You will been to dr the instal file over to the storage card on the G1 and install it from there.
Also, if you actually have the devi, I'm sure all of us here on the site would love to see a detailed video of it. I know we've all seen the dozen from a few weeks ago, but there's still a lot tt was not shown.
nickmgray said:
from all the press releasinfo and various blogs, its beenreported a fe hundred times that the G1 will not sync in any way, shape, or form ith a pc. This also means that youcan not try to install any app on the device through a pc like you can with a pocket pc. You will been to dr the instal file over to the storage card on the G1 and install it from there.
Also, if you actually have the devi, I'm sure all of us here on the site would love to see a detailed video of it. I know we've all seen the dozen from a few weeks ago, but there's still a lot tt was not shown.
Click to expand...
Click to collapse
yes vid please!! also nick is right your best bet is to probably upload it to your sd card and then put it back into the phone and install from there...if not we should start working on a sync program or something such as this
If i had mine already i would have posted all kinds of info and pictures on it. If you truely have one which i don't see how you could then put us out of our misery and share the wealth lol.
USB mass storage ?
I thought that the phone shows up as a usb mass storage device when plugged into win, mac or linux boxes via USB. Is that not true?
According to the user manual, the SD card shows up as a mass-storage device via USB. It doesn't say anything about the phone's memory.
Stop thinking winmo, guys Why write a sync application when it's drag-and-drop in the first place?
this is true....as far as adding music and whatever else you like you should be able to just drop in onto the sd card right? the only thing that people are needing a sync if for the exchange?
stats555 said:
If i had mine already i would have posted all kinds of info and pictures on it. If you truely have one which i don't see how you could then put us out of our misery and share the wealth lol.
Click to expand...
Click to collapse
I have one because of some GOOG connection. I will post a video in a few minutes. I will be glad to give you what ever information you need on the phone that I can access. For those skeptics, here is a picture with the current time showing... http://www.shakechillis.com-a.googlepages.com/
beartard said:
According to the user manual, the SD card shows up as a mass-storage device via USB. It doesn't say anything about the phone's memory.
Stop thinking winmo, guys Why write a sync application when it's drag-and-drop in the first place?
Click to expand...
Click to collapse
I found this post in google http://groups.google.com/group/android-developers/msg/b9f5ddc77af39239
I put the binary folder into the SD card under /download. Now I don't know how to access the SD card and launch the application.
If i could only have it for just 3 hours. I would love to open up the phone dissect it, and later see if we can get it into bootloader, maybe mtty.
that "android device"
I *think* that is the debug CLI (not a linux shell) called the Android Debug Bridge.
Interesting that it is client/server and runs on odd port numbers between 5555 and 5585.
http://code.google.com/android/reference/adb.html
Check out the parts about PPP over usb and SHELL under ADB commands.
mdashali said:
I have one because of some GOOG connection. I will post a video in a few minutes. I will be glad to give you what ever information you need on the phone that I can access. For those skeptics, here is a picture with the current time showing... http://www.shakechillis.com-a.googlepages.com/
Click to expand...
Click to collapse
Right on man, sorry i didn't mean any disrespect i didn't think it was possible to get one early. Looks sweet, are you happy with it so far? Was wondering what kind of material the outer shell was made out of, is it rubberized or more like a plastic type material? I love the dash shell, it has a rubberized shell.

Any linux (ubuntu) users with success?

Hi again guys!
Ever since the ATT update usb connecting to the phone in ubuntu is sporadic and unreliable. I can usually get my photos off of it. Sometime I can even get into a non-root basic filesystem as well
However this isn't my main problem. I want to root the phone and install custom ROM's etc... Tried the VMware and a version of windows and installed the samsung drivers to XP but have trouble (again) with the usb and VMware.
Any help would be appreciated.
Additionally I'm pretty pissed off about the update thing. I don't care about tethering per se but that underhanded **** is why I dumped microsoft in the first place. I'll dump ATT too and spend my money elsewhere.
maskvp said:
Hi again guys!
Ever since the ATT update usb connecting to the phone in ubuntu is sporadic and unreliable. I can usually get my photos off of it. Sometime I can even get into a non-root basic filesystem as well
However this isn't my main problem. I want to root the phone and install custom ROM's etc... Tried the VMware and a version of windows and installed the samsung drivers to XP but have trouble (again) with the usb and VMware.
Any help would be appreciated.
Additionally I'm pretty pissed off about the update thing. I don't care about tethering per se but that underhanded **** is why I dumped microsoft in the first place. I'll dump ATT too and spend my money elsewhere.
Click to expand...
Click to collapse
Linux user here. I haven't had the problems you describe. I have lately been using ES File Explorer to copy to and from a shared folder on my desktop. avoiding the USB for file transfers all together. when I do connect via USB I usually use ' adb push' and 'adb pull' to move files around.
To Root your phone there is an 'update.zip' method that I used (no computer needed)
There is also a tool called ClockworkMod Recovery that you can use to install custom rom's and create nandroid backups. (no computer needed)
And finally if you manage to screw up and can not boot, you can use Heimdall on linux like you would use Odin on Windows.
enjoy your phone...
-p
Thank-you so much!!!
I was thinking about exactly what you wrote. Why not do it the linux way? Admittedly my skills are weak.
Had a little trouble with the update.zip but went to the wiki (again) and the info on how to do it from the phone was there. BTW the wiki has improved since last week.
Rooted phone and installed Titanium Backup and Clockwork Recovery. In my excitement I deleted all the ATT bloatware before backing them up and the ROM. Oh well... Too bad.
Now I just feel great about my phone. Needs some customization but no hurry. Only thing was that TB prompted me to go to settings/applications/ and tick "unknown sources". Doesn't exist.
Thanks again! If you have anymore nuggets of info...?
linux newb here but i try
edit:
the phone can mount to a vm in dowload mode for use with odin or in kies mtp mode as long as debugging is off, otherwise it likes to mount to the host pc as a drive, i dont know a work around but you can make the phone a shared folder with the vm client so you can see the files in the vm, it'll be seen as a network location in that case.
it can mount as a drive in linux but you need to select to mount from the phone. i was having problems with it in eclair in windows and didnt try it in linux but froyo is working great. in eclair it may help to try with debugging on then you can mount from the notification bar.
maskvp said:
Rooted phone and installed Titanium Backup and Clockwork Recovery. In my excitement I deleted all the ATT bloatware before backing them up and the ROM. Oh well... Too bad.
Click to expand...
Click to collapse
I did that also...
maskvp said:
Now I just feel great about my phone. Needs some customization but no hurry. Only thing was that TB prompted me to go to settings/applications/ and tick "unknown sources". Doesn't exist.
Click to expand...
Click to collapse
To enable side loading(unknown sources). I used method 5 from this post.
http://forum.xda-developers.com/showthread.php?t=738376
and here is a link to my comments on the method later in the thread regarding some punctuation corrections.
This method uses adb from the SDK to pull the settings.db file off and edit it using sqlite3 before pushing it back on.
I believe you can edit the file directly on your phone once you have root and install a terminal app from the marketplace.
The above forum post is also in the wiki you referenced previously. basically you want to look for methods to "enable side loading"
-p
I'm using Ubuntu and have had no problems. Rooted and removed market restrictions without a hitch.
In progress upgrading to 10.10 64bit. Will see, but right now my machine sees my phone but it won't mount. Though I haven't tried to force it.
maskvp said:
In progress upgrading to 10.10 64bit. Will see, but right now my machine sees my phone but it won't mount. Though I haven't tried to force it.
Click to expand...
Click to collapse
On the phone I leave my usb settings set to ask on connection. And then chose 'mass storage' when it asks. It then mounts /sdcard as an external drive. (make sure you haven't left usb debuging on)
pietro_spina said:
On the phone I leave my usb settings set to ask on connection. And then chose 'mass storage' when it asks. It then mounts /sdcard as an external drive. (make sure you haven't left usb debuging on)
Click to expand...
Click to collapse
Oh I've tried it all-wichaways! That hasn't worked either. The card(s) are seen but no longer mount like they used to. When I choose media player I get this message on the phone: PC connection only available in idle screen. Close all running applications. I think something may be corrupted on the phone.
Before I start flashing anything I'm going to give 10.10 a go. Ubuntu specifies that 10.10 plays nice with Android. Unfortunately, I'm having trouble with my startup disks and have wasted three of them on three different downloads. Won't fully boot. Unfortunately, I've had this experience before with other releases, and it almost always was something being wrong with the .iso that was downloaded. Even tried a usb startup and same experience.
Woes. PITA!
maskvp said:
I've had this experience before with other releases, and it almost always was something being wrong with the .iso that was downloaded. Even tried a usb startup and same experience.
Woes. PITA!
Click to expand...
Click to collapse
Make sure you burn your disks at a slow speed. Like 4x. Also try downloading over a stable wired connection. Use the md5 tool to check your download and your burn. If you can figure out when it is getting corrupt you have a fighting chance.
Reporting back. Finally got 10.10 to boot from a usb flashdrive by disabling the BootParameters. I guess 10.10 is so cutting edge my 2.5 yo toshiba can't boot it easily.
Reinstalled 10.04 without a hitch and since I didn't format my /home still kept everything. But I tried connecting by usb before any updates. No worky. And not after the 256M of updates either.
It's the phone I'm sure. Not really keen on flashing the ROM yet just to fix this. Recollection is that Samsung didn't put a good effort into this part of the phone. But I think again..
Why not eschew the usb for file transfers? I've got Bluetooth and wifi right here. Who needs clunky old usb? Adhoc network?
Ideas? Wifi would be easiest since my laptop doesn't have Bluetooth.
maskvp said:
Ideas? Wifi would be easiest since my laptop doesn't have Bluetooth.
Click to expand...
Click to collapse
I think I mentioned in an earlier post that I use an app called ES File Explorer (free in the market) to navagate to a shared folder on my desktop.
My (samba) shared folder has no restrictions and works well. Only issue is I have to fix ownership and permissions on things copied over to the computer from the phone. If you choose to password protect yours let me know how that works out for you.
pietro_spina said:
I think I mentioned in an earlier post that I use an app called ES File Explorer (free in the market) to navagate to a shared folder on my desktop.
My (samba) shared folder has no restrictions and works well. Only issue is I have to fix ownership and permissions on things copied over to the computer from the phone. If you choose to password protect yours let me know how that works out for you.
Click to expand...
Click to collapse
OK thanks. I'm going to investigate this. I take it ESFE works over the 3g connection as long as the host (my laptop) is connected to the internet?
maskvp said:
OK thanks. I'm going to investigate this. I take it ESFE works over the 3g connection as long as the host (my laptop) is connected to the internet?
Click to expand...
Click to collapse
It supports FTP for sure. I'm no security expert but I doubt its a good idea to share a samba share over the internet.
If you want remote access to you desktop there are secure methods for that. The method I would choose would depend on my desire/need for a remote connection.
If I just want to access my shared folder I would probably set up a VPN connection and then use ES FileExplorer.
To fully control the computer, use VNC or other "remote desktop" application.
Been reading up on Samba. It is the linux way lol. Also, I went and got a Bluetooth micro-adapter. Installed drivers from the repository.
Transferred some pics and music back and forth. All GUI based. Worked first time. I'm still this side of the learning curve but my base needs are met.
The Bluetooth works great but I'd like to learn a bit more about the wifi. Seems to me one should be able to move files with a VPN via the wireless adapters and no router. I just lack the knowledge and skill to do it.
But thanks for reminding me about the ES FileExplorer! As far as the permissions in Ubuntu for the shared folder I just checked the box under right-click- sharing options allow others to create and delete files from this folder. I think that works.

I want to pull an exclusive app from the Asus

I really want the game "Let's Golf." Gameloft won't make it available for Tegra 2 devices and all the .apk's for other devices don't translate well.
The new Asus tablet is supposed to have it, which matches the hardware and screen specs of the xoom, which leaves me to assume that it would work on the xoom.
Does anyone know how to pull that app off the tablet and put it on my xoom?
Adb pull /system/data/golf.apk C:\some\folder
Adb push C:\some\folder\golf.apk /system/data/golf.apk
Adb reboot
Of course change your directories accordingly...or you can use root explorer....
Sent from my SPH-D700 using XDA Premium App
I'm going to be completely honest, I have no idea what that means
Sure that would be classed as piracy.
I have a acer A500 and Im sure it's a demo. Havent played it yet though.
virgil1528 said:
I'm going to be completely honest, I have no idea what that means
Click to expand...
Click to collapse
You need Android SDK Tools a USB lead and your phone, you can download the Android SDK from here. You use the commands Kcarpenter mentioned to push and pull using ADB via Command Promt in Windows.
And like he said, it's easier to use Root Explorer, assuming the Xoom has S-OFF it should be easy enough.
You can also use ES File Explorer to backup the apk to an sdcard then transfer from there to the Xoom.
BUT, I know from personal experience that Gameloft games download content after you install. I don't know if this will work with a pirated apk. Because essentially you are pirating a paid game if you do this.
Which is illegal and im sure should not be discussed on XDA...

[Q] ADB. The do's and don'ts ??

I just downloaded and properly installed the zip version of adb/sdk (r13). I followed a great guide on addictivetips.com.
I am going to do some serious searching/reading on it's proper use because I have never used it before.. I have only command prompted "adb devices" so far to see what my serial number is.
There are a alot of tools and functions. It appears complex to me at this point. I learn alot about things by clicking and exploring, seeing what happens. However I don't want to mess my phone up.
What I would like to know is what can I SAFELY do to explore it's functions and my phone? Is it safe to just click on things and see what happens?
Also and MOST importantly are there any things I should NOT do? Can I screw up my laptop with using this?
If anyone could leave me some comments/suggestions or even some command prompts to checkout I would greatly appreciate it. I'll also be sure to hit the thanks button
Don't ever do this.
Code:
adb shell
mount -o remount,rw /system
rm -rf /system
Ya, I definitely wouldn't want to play with my system like that...
The reason I made this thread is because I have clicked on things a couple of times to see what happens and a small black "command prompt" screen pops up and then lines of text flash rapidly through it (so fast I can't even read it) and then it disappears.
It makes me nervous because I don't know what it is or what it is doing. Luckily I didn't have my phone attached to the computer at the time so I didn't have to worry about my phone. But I don't want to mess my laptop up either.
Like I said I am going to read read read all I can about adb it is just hard to fight the urge to explore it. I know there are very knowledgeable in our Community who can tell me what NOT to do.
Thank you all for taking the time to read this.
Sent from my SGH-T959V using xda premium
Alright, that last post was a joke post. I usually see that on Linux threads.
It'll actually be REALLY hard to mess up your computer with ADB. It's more likely that you'll mess up your phone and to do that you'll have to try pretty hard to do it.
You're trying to run adb as if it was a windows program and it's not, it's a command line app.
Press the windows key + r, then type in
Code:
cd C:\Users\yourusername\Desktop\ADB\
adb shell
Then you can give commands for the phone. A few of the harmless ones are
Code:
ls
cd
ps
top
Here's one of the best guides (it's the manual) for adb:
http://developer.android.com/guide/developing/tools/adb.html
Thanks for your replies FB.
I found that manual last night while searching and copied all 11 pages. I'll be reading it on my three and a half hour daily commute. I'll be a pro in no time lol.
Sent from my SGH-T959V using xda premium
Jerry D said:
Thanks for your replies FB.
I found that manual last night while searching and copied all 11 pages. I'll be reading it on my three and a half hour daily commute. I'll be a pro in no time lol.
Sent from my SGH-T959V using xda premium
Click to expand...
Click to collapse
A lot of things can be done quicker in the terminal than through the gui. Like copying files to and from the computer. I don't use ADB anymroe though, I just use SSHDroid and connect to my phone with putty on windows. You can do a lot of stuff like that. Even copy files over wifi.

[Q] retrieve wifi pass

HI,
at my work we use tablets for logging our work.
tablets are connected to wireless.
tablets are allready rooted.
I'm trying to get wireless password from them, I want to go online from my device.
my plan was:
plug sd card with terminal apk in and install it.
then retrieve it from terminal. easy though.
however there is no file explorer so I can not install terminal apk .
any ideas guys?
How about installing the terminal.apk or file manager from pc?Using app Injector...:thumbup:
Good luck..
bretahrnek said:
HI,
at my work we use tablets for logging our work.
tablets are connected to wireless.
tablets are allready rooted.
I'm trying to get wireless password from them, I want to go online from my device.
my plan was:
plug sd card with terminal apk in and install it.
then retrieve it from terminal. easy though.
however there is no file explorer so I can not install terminal apk .
any ideas guys?
Click to expand...
Click to collapse
If you can access mails, mail terminal apk to yourself and open & install in Tab. Isn't that simple enough ??
what are the pre installed apps you have in tablets ?
appviz said:
If you can access mails, mail terminal apk to yourself and open & install in Tab. Isn't that simple enough ??
what are the pre installed apps you have in tablets ?
Click to expand...
Click to collapse
quite simple solution, thank You for that, however I can not use mail/gmail
it is quite simplified and a loads of things had to be taken away.
well I think that I will have to take it home with me and plug it to computer ...
bretahrnek said:
quite simple solution, thank You for that, however I can not use mail/gmail
it is quite simplified and a loads of things had to be taken away.
well I think that I will have to take it home with me and plug it to computer ...
Click to expand...
Click to collapse
:laugh: please let everyone know if u find out any better alternative...
The ldea is learning and sharing.... And encouraging each other:good:
USB or Bluetooth is the best option for it IMO =)
still not sorted yet,
not having enough time...

Categories

Resources