[HELP] how to uninstall default apps - Click Android Development

Hello out there,
my first post will be a request.
Just bought root explorer, finally market is working good.
I would like to uninstall default noisy-memeater-neverused-apps (peep and fingerprint are just 2 examples).
Is there a nice way to delete them without leaving installation files scattered in the phone? Some program as well (also payment one)?
Should I just delete the apk file or there is also a directory where the app save something of his own?
It would be really nice if someone with more experience than me can do a list of default .apk files/directory created so everyone out there with a rooted phone and unused default apps that want to get rid of can do this also manually with a root explorer or from adb shell.
Thank you a lot.

Pondo78 said:
Hello out there,
my first post will be a request.
Just bought root explorer, finally market is working good.
I would like to uninstall default noisy-memeater-neverused-apps (peep and fingerprint are just 2 examples).
Is there a nice way to delete them without leaving installation files scattered in the phone? Some program as well (also payment one)?
Should I just delete the apk file or there is also a directory where the app save something of his own?
It would be really nice if someone with more experience than me can do a list of default .apk files/directory created so everyone out there with a rooted phone and unused default apps that want to get rid of can do this also manually with a root explorer or from adb shell.
Thank you a lot.
Click to expand...
Click to collapse
adb shell ls /system/app/
adb shll rm /system/app/example.apk

Ask yours questions here : http://forum.xda-developers.com/showthread.php?t=716282
haree can you close...

apewall said:
adb shell ls /system/app/
adb shll rm /system/app/example.apk
Click to expand...
Click to collapse
thats easy ape, thank you, and I already know it, but not what I wanted.
I was asking if someone can list defaultappname-apkfile association in that dir.
So I know what to clean without going blind at it.
And if default apps have files in other positions than /system/app so to clean also remaining files for that app.
Thank you.

Related

Root access with Astro?

Is there anyway to start Astro as root so you can use it to edit system directories?
I had wished for the same thing.. but i didnt tell nobody.. soo maybe this will be more effective. prevents having to type in the terminal all the time.. not that its bad.. ive learned so much allready since ive had this phone...
I totally agree! That would be perfect! Maybe there a way of editing the code or smth...
If you can't work *MORE EFFICIENTLY* directly from the terminal, then you definitely should NOT have root access via GUI.
lbcoder said:
If you can't work *MORE EFFICIENTLY* directly from the terminal, then you definitely should NOT have root access via GUI.
Click to expand...
Click to collapse
Pretty much this. It seems like most of the people having problems on this website just want root because it's "kewl" but really have no idea what it is or even have a clue on how Linux works.
I actually Emailed the Dev of Astro about this same question and here was his reply.
Here is the email copied and pasted from gmail.
My question
Are you able to make a version that requests root access to delete chmod rename move etc for the 100,000+ users from xda and other boards with root access?
His Reply
On Jan 21, 2009 10:57 AM, "Kevin Payne" <metago.inc[at]gmail> wrote:
This is a bit outside ASTRO's scope at the moment. Technically, ASTRO should work fine on files owned by root if it were run as a root process, but running applications as root is not advised in general. Someone really needs to create a sudo type command to let an individual application run as root.
lbcoder said:
If you can't work *MORE EFFICIENTLY* directly from the terminal, then you definitely should NOT have root access via GUI.
Click to expand...
Click to collapse
d00m said:
Pretty much this. It seems like most of the people having problems on this website just want root because it's "kewl" but really have no idea what it is or even have a clue on how Linux works.
Click to expand...
Click to collapse
Considering the fact that I'm a Systems Administrator as my profession and work with hundreds of Linux/Unix/Windows servers a day, the whole reason why I bought the G1 was for development and tinkering, the fact that my home PC is running Vista x64 (i haven't gotten around to creating a VM or messing with the drivers), and that I do wipes frequently to test different configurations, I'm pretty sure I'll be ok with root access. I'm just tired of manually doing something on that tiny keyboard that can easily be done with a nice pretty GUI. I stare at consoles all day and thousands of lines of black and white text, when I come home I don't exactly want to be anywhere near a terminal.
Also, why bother doing anything on a phone, other than using it as a phone (or for email, texting, etc.), if you don't do it because it's "kewl". I mess with my phone because it's cool to have a mini-*nix based computer with several fun radios on it. If I do something stupid like type "rm -Rf /*" after logging in as root (never going to happen) then that's my own fault.
I don't care if you're a Unix purist and you write up your office reports, spreadsheets, and diagrams in vi. Good for you, you're wasting time that can be better spent on other things because of your stubborn prejudice against GUI's. I asked a question, because I have a reason for that question. If you don't have any answers to that question, then please don't bother replying.
diabolical28 said:
I actually Emailed the Dev of Astro about this same question and here was his reply.
Here is the email copied and pasted from gmail.
My question
Are you able to make a version that requests root access to delete chmod rename move etc for the 100,000+ users from xda and other boards with root access?
His Reply
On Jan 21, 2009 10:57 AM, "Kevin Payne" <metago.inc[at]gmail> wrote:
This is a bit outside ASTRO's scope at the moment. Technically, ASTRO should work fine on files owned by root if it were run as a root process, but running applications as root is not advised in general. Someone really needs to create a sudo type command to let an individual application run as root.
Click to expand...
Click to collapse
I looked into the commands to launch an application from the CLI and found that Astro can be started using the following command:
am start -n com.metago.astro/.FileManagerActivity
However, this doesn't do us any good, since the dalvik VM will take that command and create a process as a sandbox user regardless of what user executes that command. There looks like there's a way to tell the VM to fork the process as a specific uid and gid, but that requires editing the AndroidManifest.xml.
I'm not too good with Java, and I don't know how strict Android's API is, so I don't know if running an apk application as root is even possible.
However, I do know that running commands from inside an application, like su, is possible.
~TM
"Wise men speak because they have something to say; Fools because they have to say something." ~Plato
Solved--Astro with root...(workaround)
kinda late, but in case anyone wants to know this is what I did.
This way technically doesnt allow astro to run with root, but its just as good.
I originally did this a few months back for my G1, and just mod it a little to work on my nexus
- created a script to mount system as rw
- created a script that gives r/w permission to all app directories (/data, /data/app, /data/app-private, /system, /system/app, /system/sd, ...) and all apps inside those directories
-then merged the 2 scripts and named it astro_root_perm
-installed GScript from the market
-created another script that
-first changes all permissions on apps back to what they started as(644, 640...)​-then changes permissions of directories back to what they were​-and finally remounts system back to ro, and named this script to astro_basic_perm​
-used Gscript to create shortcuts of the 2 scripts to my home screen.
-then with bettercut, I changed the scripts' icons to the astro icon. I just colored the astro stock icons "A" green for one script and red for the other
So anytime I want to use astro as root, I just click the shortcut I made with gscript off my home screen, open astro,
Then when Im done with astro, I just run the other script
I know its not the same as running astro AS root, but it works for me.
Im not really a linux guy......I'd really appreciate if someone could help me with this next step
++++++++++++++++++++++++++++++++++++
Does anyone know what I need to include in a script to have it call/open a program automatic?
My ultimate goal is to create one script that will
Mount system rw
Change needed permissions to rw
Automatically open up Astro
Then change all permissions back when astro is terminated
Possibly create a keyboard shortcut for the G1
What do ya think?? is it possible??
Estrongs has limited root file browsing on some ROMs and SU File Manager or Root File Manager will let you browse as root for a small price.
+1 recommendation on Estrongs File Explorer's root option if you want it for free, includes Windows shares browsing over lan.
Otherwise try SUFBS, also has built-in terminal.
Sent from my HTC Hero using Tapatalk
louieG1 said:
My ultimate goal is to create one script that will
Mount system rw
Change needed permissions to rw
Automatically open up Astro
Then change all permissions back when astro is terminated
Possibly create a keyboard shortcut for the G1
What do ya think?? is it possible??
Click to expand...
Click to collapse
I'm not sure exactly how gscript handles things, but with a normal bash (shell) script, the lines are run sequentially. That is, the next line isn't run until the previous line is done. It would seem that you could put all that in one script, and the still-running script wouldn't change the permissions back until astro has ended. But then again, java adds complexity to it and I'm not sure if it works the same.
louieG1 said:
kinda late, but in case anyone wants to know this is what I did.
++++++++++++++++++++++++++++++++++++
Does anyone know what I need to include in a script to have it call/open a program automatic?
My ultimate goal is to create one script that will
Mount system rw
Change needed permissions to rw
Automatically open up Astro
Then change all permissions back when astro is terminated
Possibly create a keyboard shortcut for the G1
What do ya think?? is it possible??
Click to expand...
Click to collapse
Love this idea! Unfortunatly I'm no coder but would love to see something like this created.
I created a "GodMode" script that does exactly this, email me if you want it, I can edit it to work for the G1.
Totally forgot I started this thread, then happened to find it on Google when looking for the same thing, again.
Went back to Windows Mobile for a little bit, missed Android, and now have a Samsung Vibrant.
Still want a way to use ASTRO with root priviledges, especially since I don't have a tactile keyboard anymore.
phaelox said:
+1 recommendation on Estrongs File Explorer's root option if you want it for free, includes Windows shares browsing over lan.
Otherwise try SUFBS, also has built-in terminal.
Sent from my HTC Hero using Tapatalk
Click to expand...
Click to collapse
Thank you.
Estrongs File Explorer enabled me to flash Tamil font in my Rooted T-Mobile G2X mobile phone.
I know i am not answering the question directly. But, i use Linda Manager it gets the job done.
---------- Post added at 08:17 PM ---------- Previous post was at 08:14 PM ----------
raddy said:
Thank you.
Estrongs File Explorer enabled me to flash Tamil font in my Rooted T-Mobile G2X mobile phone.
Click to expand...
Click to collapse
Hi raddy,
I'm also from TN as well, i would love to get the Tamil fonts. Can you please guide me?
Not having tamil fonts on the browser is simply annoying
Hi
If your mobile is rooted, then follow this link.
http://forum.xda-developers.com/showthread.php?t=798380
Sent from my LG-P999 using XDA App
raddy said:
Hi
If your mobile is rooted, then follow this link.
http://forum.xda-developers.com/showthread.php?t=798380
Sent from my LG-P999 using XDA App
Click to expand...
Click to collapse
Cool, i got the tamil fonts on my G1, thanks for the help.

Ran apps2sd and all apps disappeared... (superhero 3)

I'm pretty sure that they didn't just disappear all together... but after I ran the included apps2sd app on SuperHero v3... the apps probably got moved to the sd card but the link is probably broken to it... how can I fix this?
http://www.mediafire.com/?z05dzymmgtt
this is not a fix but will let you check /system/sd/ to make sure file are there
well thats interesting... they are not there... the folders exist... but the apps are not there... all I see in /system/sd/app is Astro and root explorer apks... so did all of them get erased???
rigamrts said:
http://www.mediafire.com/?wtfdude
this is not a fix but will let you check /system/sd/ to make sure file are there
Click to expand...
Click to collapse
Wrong type of forum for sharing warez. The program is £1.20... Buy it if you like it.
For the OP -
Code:
su
cd /system/sd
ls -al
Typing that in Terminal Emulator would do the same thing as the program this guy linked to you.
It sounds like the a2sd script you tried didn't complete successfully. Are your programs under /system/app ?

Removing Default Apps?

There's a few default apps I'd like to remove (work email, email etc. stuff I know I'll never use). Can anyone tell me if this is possible? And if so, how do I do it?
Thanks!
Funkstar De Luxe said:
There's a few default apps I'd like to remove (work email, email etc. stuff I know I'll never use). Can anyone tell me if this is possible? And if so, how do I do it?
Thanks!
Click to expand...
Click to collapse
Hey, Give this a go - this is how i do it. (Not to sure what Work Email APK is can't seem to find how its named.
So you need to mount the filesystem for read/write.
Code:
adb remout
Just to be on the safe side you can pull the apk so you have it as a backup..
Code:
adb pull /system/app/Email.apk Email.apk.bak
And now you can go delete the apk...
Code:
adb shell rm /system/app/Email.apk
And another one becuase amazon mp3 is useless...
Code:
adb shell rm /system/app/com.amazon.mp3.apk
Now all you need to do is just reboot
Code:
adb shell reboot
And they have gone
If you need some help on adb take a look here, http://forum.xda-developers.com/showthread.php?t=532719
Great, thanks! Can you tell me how I go about finding which .apk is related to which app?
Funkstar De Luxe said:
Great, thanks! Can you tell me how I go about finding which .apk is related to which app?
Click to expand...
Click to collapse
Its all in the names of the apk, Best way to look at them would to be download 'Astro' off of the market and search the /system/app dir there
ls system/sd/app
and
ls/system/app
will give you listings of all apps, you will usually have a pretty good idea which apk is where (just by looking at names, it will be something like com.xxxx.xxxxx.apk where some of the xxxx will be app name)
It is usually a good idea to refresh your dalvik-cache at the same time so after you're done nuking unneeded apps type
rm -r /system/sd/dalvik-cache
reboot
It will take a while for a reboot because system will rebuild all odex files.
Obviously all of this needs to be done in su mode and back up your existing state just to be safe.
Good luck.

one click batch install of apks?

I have 400+ apks to install please help me.
JESUS CHRIST
I would love to see that list
AppManager(paid) will help you, I believe.
Copy all apks to one folder on your sdcard (for example folder name: mommy)
Open up terminal emulator and run:
cd /sdcard/mommy
busybox install *.apk /data/app
By the way, you have too many apps
How the... I have maybe 20 apps and I don't use half of them. Lol.
T3hFurious1 said:
How the... I have maybe 20 apps and I don't use half of them. Lol.
Click to expand...
Click to collapse
apk.restore-v1.3, see similar thread like 3 threads up.

Anolog clock resets o reboot

Hi all,
Was not really sure where to put this apologies if its the wrong place.
I recently created my own analog clock, I'm using CM7 RC0, I simply replaced the clock background .png in the original desktopclock.apk, renamed it, signed it and then installed it through filemanager.
Now, it works fine! I was very happy, until I rebooted my phone today, got back onto the desktop and it had reset to the original anolog clock! Tried it again and sure enough everytime I reboot I have to reinstall the .apk!
Anybody have any idea why on earth this would happen?
Many thanks,
Sean
This was originally brought to my attention with the HTC_IME mod by Jonasl. I installed a themed version over the top of the one already installed by default in /system/app and on reboot the original (quite frankly ugly) keyboard was back...
for some reason I do not know, you have to manually un-install the previous version. Don't know why...
use this http://forum.xda-developers.com/showthread.php?t=644909
to un-install the original apk for the clock, then push your app into /system/app using adb. reboot and it should all be sorted... I hope.
Great stuff, thank you for your help. Now I wonder how to do this using linux, I will look into it, at least I know what the problem is
wiiija said:
Great stuff, thank you for your help. Now I wonder how to do this using linux, I will look into it, at least I know what the problem is
Click to expand...
Click to collapse
I'm on linux right now, and I did this to remove my stock messaging app not 3 hours ago...
Just open up your terminal and use adb, assuming you have the androidsdk on your computer...
If you don't it's going to be a little harder, you're going to have to find a root exploring file manager and delete the analog clock app from /system/app and then you're going to have to put the new one there AFTER rebooting.
If you want adb just ask and I'll tell you how to get it.
1. download the android sdk from http://dl.google.com/android/android-sdk_r12-linux_x86.tgz
2. open up the .tgz and extract it to /home/-your_user_name/androidsdk
3. open up terminal and type
su
PATH=$PATH:/home/-your_user_name/androidsdk/tools
adb
adb devices <-------(make sure your device is connected and in debug mode. If that fails just boot into recovery)
qiuness said:
adb shell
su
cd /system/app
mount -o rw,remount /system
rm -r analogclock.apk
Click to expand...
Click to collapse
4. install your new, themed app
abd push /path/to/your/app.apk /system/app
5. reboot.
Brilliant guys thank you very much, its all sorted, easy once you know how

Categories

Resources