Question message after disable app via adb - Samsung Galaxy Watch 5

hello,
i saw that there is a few guide for how to disabling app via the adb.
but i don't understood fi i disable/blocking a app, which kind of message i will received when i'm try to open the disable app?
can somebody send a screen shot?
many thanks in advance.

Related

Stock FroYo Mail App

Anyone replaced the horrible TW Mail app with the stock FroYo one yet? Is it even possible?
mfriedman79 said:
Anyone replaced the horrible TW Mail app with the stock FroYo one yet? Is it even possible?
Click to expand...
Click to collapse
No but I did replace it with the one from the Galaxy Tab. I prefer that one over the standard Captivate TW email.apk.
I have the Captivate with Froyo installed. When I reply to an email, it sends a message, but none of the content is kept and the addressee gets an empty message. The see nothing from me, but do see the original email message. Anyone else see this problem? How do I get the one for the Galaxy Tab to see if it corrects the problem?
Gunz52 said:
I have the Captivate with Froyo installed. When I reply to an email, it sends a message, but none of the content is kept and the addressee gets an empty message. The see nothing from me, but do see the original email message. Anyone else see this problem? How do I get the one for the Galaxy Tab to see if it corrects the problem?
Click to expand...
Click to collapse
Yep same problem. Have to go back to touchdown for now for email because it's a little annoying having to send new emails to any replies just to have text actually show up.
Gonna have to look for the Tab email app and try that.
theMaginator did you find the apk in a thread or pull it out yourself? Can you provide a link to any instructions you used or link the apk yourself for the Tab email app?
Thanks
Glad to know I'm not the only one.
mfriedman79 said:
Yep same problem. Have to go back to touchdown for now for email because it's a little annoying having to send new emails to any replies just to have text actually show up.
Gonna have to look for the Tab email app and try that.
theMaginator did you find the apk in a thread or pull it out yourself? Can you provide a link to any instructions you used or link the apk yourself for the Tab email app?
Thanks
Click to expand...
Click to collapse
Yes there is a thread on the development side. Ill post a link shortly.
Sent from my SAMSUNG-SGH-I897 using XDA App
mfriedman79 said:
Anyone replaced the horrible TW Mail app with the stock FroYo one yet? Is it even possible?
Click to expand...
Click to collapse
Gunz52 said:
I have the Captivate with Froyo installed. When I reply to an email, it sends a message, but none of the content is kept and the addressee gets an empty message. The see nothing from me, but do see the original email message. Anyone else see this problem? How do I get the one for the Galaxy Tab to see if it corrects the problem?
Click to expand...
Click to collapse
mfriedman79 said:
Yep same problem. Have to go back to touchdown for now for email because it's a little annoying having to send new emails to any replies just to have text actually show up.
Gonna have to look for the Tab email app and try that.
theMaginator did you find the apk in a thread or pull it out yourself? Can you provide a link to any instructions you used or link the apk yourself for the Tab email app?
Thanks
Click to expand...
Click to collapse
theMaginator said:
Yes there is a thread on the development side. Ill post a link shortly.
Sent from my SAMSUNG-SGH-I897 using XDA App
Click to expand...
Click to collapse
You guys can follow the instructions here to get this working as expected.
Reply Work Around
If the directions to patch this are a little intimidating, which they are to me, I tried a simple test and it seems to work.
When you hit the button to reply, there is a "delete" circle and hash next to the original message. Hit that, deleting the original senders text, then type your reply as you normally would. This has worked on every email I have replied to this evening.
This isn't a pretty fix, but it is easy for the time being.
Regards.
FYI the instructions to replace the Email app linked to above don't explicitly mention that you need to be rooted to be able to do it. It isn't really all that difficult to do though, you just need to download the Android SDK and then the rest is just copy and pasting into the command prompt.
jneilliii said:
You guys can follow the instructions here to get this working as expected.
Click to expand...
Click to collapse
Hmm system didn't show any mail app after I tried that, but after jumping through some of the links provided in the link you gave I was able to find one that appears to work. Will have to see how it goes.
Thanks.
As for the GalaxyTab app, while it is definitely the best looking Android App i have tried so far, it had some issues with exchange support for me, so had to try something else.
Whenever I try this line
cp /sdcard/Email.apk > /system/app/Email.apk
I get this
cp: not found
How do I get around this?
BUS DR1V3R said:
Whenever I try this line
cp /sdcard/Email.apk > /system/app/Email.apk
I get this
cp: not found
How do I get around this?
Click to expand...
Click to collapse
Make sure you have busybox installed. may have to try 'busybox cp' instead of just cp.
Also for me it didn't recognize the > command so I had to remove that, but it also could be why it didn't work for me. The other instructions showed the command as 'cat /sdcard/Email.apk > /system/app/Email.apk' which could also be the difference on why it didn't work.
Sadly I got another stock app working, but it has not GAL search. wondering if its the 2.1 app by mistake.
EDIT: I am mistaken. No button like stock to search GAL, but it does appear to auto search it when entering a name.
Oh well. the search continues.
replacing with new Email.apk not working
When i try to follow the steps in the link posted, I get this....
C:\android-sdk-windows\tools>adb pull /system/app/Email.odex
remote object '/system/app/Email.odex' does not exist
Any help would be greatly appreciated! Thanks!
changeyez said:
When i try to follow the steps in the link posted, I get this....
C:\android-sdk-windows\tools>adb pull /system/app/Email.odex
remote object '/system/app/Email.odex' does not exist
Any help would be greatly appreciated! Thanks!
Click to expand...
Click to collapse
Hmm you can always go through shell and verify the file is there.
adb shell
su
cd /system/app
ls | grep Email
That should show both the apk and odex files if they exist.
You can also try backing up via copying from adb as well, or just rename the files as I did for easy restoration.
adb shell
su
cd /system/app
mv Email.apk Email.old
mv Email.odex Email.odex.old
or
adb shell
su
cp /system/app/Email.odex /sdcard/Email.odex
cp /system/app/Email.apk /sdcard/Email.apk
Then just move the new Email.apk to /system/app
mfriedman79 - perfect. thanks!
Where is the Stock FroYo Mail App?
BUS DR1V3R said:
Whenever I try this line
cp /sdcard/Email.apk > /system/app/Email.apk
I get this
cp: not found
How do I get around this?
Click to expand...
Click to collapse
mfriedman79 said:
Make sure you have busybox installed. may have to try 'busybox cp' instead of just cp.
Also for me it didn't recognize the > command so I had to remove that, but it also could be why it didn't work for me. The other instructions showed the command as 'cat /sdcard/Email.apk > /system/app/Email.apk' which could also be the difference on why it didn't work.
Sadly I got another stock app working, but it has not GAL search. wondering if its the 2.1 app by mistake.
EDIT: I am mistaken. No button like stock to search GAL, but it does appear to auto search it when entering a name.
Oh well. the search continues.
Click to expand...
Click to collapse
Sorry about that guys, switched the command from cat to cp but forgot to take out the > sign. This has been fixed in the instructions.
There is a simplier way to do all this with root explorer. Delete email.apk and email.odex then move the new email.apk of your choice to system/apps and open to install.
Where can I find the default mail app for 2.1?
Sent from my SAMSUNG-SGH-I897 using XDA App

Google Music: Application cannot be installed in the default install location

Greetings. I have N1 2.3.3 original stock, rooted. 35MB internal available for programs & 5GB available on SD. When I try to install Google Music 3.0, I get message: Application cannot be installed in the default install location. I have installed/removed hundreds and hundreds of programs (including all Google ones) and this is the first time I've seen this. Any thoughts?
Sent from my Nexus One using XDA App
maliprinc said:
Greetings. I have N1 2.3.3 original stock, rooted. 35MB internal available for programs & 5GB available on SD. When I try to install Google Music 3.0, I get message: Application cannot be installed in the default install location. I have installed/removed hundreds and hundreds of programs (including all Google ones) and this is the first time I've seen this. Any thoughts?
Sent from my Nexus One using XDA App
Click to expand...
Click to collapse
Not sure if this will help, but...Goto Settings...Applications...Manage...ALL TAB...Market...and clear cache...
Not sure what clear data will do...but do the cache first.
SiNJiN76 said:
Not sure if this will help, but...Goto Settings...Applications...Manage...ALL TAB...Market...and clear cache...
Not sure what clear data will do...but do the cache first.
Click to expand...
Click to collapse
Cache is greyed out. I guess, nothing in a cache to clear. Data... on the other side, has 136KB, but am little afraid to clear that one. Thank you for your suggestion. I have actually googled this error message in relation to Nexus One, and it seems that there is just one more person with that same issue. Can I really be that lucky?
No I'm having the same problem. I'm running stock n1
Sent from my Nexus One using XDA Premium App
Hope that someone will come-up with solution. Otherwise, hopefully Google is aware of the issue, and will fix it the next incremental version of Google Music.
Well I can't download Google music because of my location but for clearing data you should be fine I have done it before and just to make sure I went ahead and did it just now and all it does is ask you to accept the terms and conditions again. So that might be something to try.
This is what Google music team sent me about my failure to install music. I've never changed my default set location. Idk it might work for some but not me.
Thanks for the additional information. We've now received confirmation from a number of users that this issue is caused by setting the default installation location to the SD card. This is a developer tools option that can be reversed by running the following command:
adb shell pm setInstallLocation 0
Sent from my Nexus One using XDA Premium App
edsnr said:
This is what Google music team sent me about my failure to install music. I've never changed my default set location. Idk it might work for some but not me.
Thanks for the additional information. We've now received confirmation from a number of users that this issue is caused by setting the default installation location to the SD card. This is a developer tools option that can be reversed by running the following command:
adb shell pm setInstallLocation 0
Sent from my Nexus One using XDA Premium App
Click to expand...
Click to collapse
Thank you. It worked.
edsnr said:
This is what Google music team sent me about my failure to install music. I've never changed my default set location. Idk it might work for some but not me.
Thanks for the additional information. We've now received confirmation from a number of users that this issue is caused by setting the default installation location to the SD card. This is a developer tools option that can be reversed by running the following command:
adb shell pm setInstallLocation 0
Sent from my Nexus One using XDA Premium App
Click to expand...
Click to collapse
This is my issue. Is it something I can change from the phone, or do I have to it from the computer? Now I just have to remember how I did it in the first place.
EDIT: Got it done and now everything works!
i was able to download and install it directly, cm7 nightly #87
edsnr said:
This is what Google music team sent me about my failure to install music. I've never changed my default set location. Idk it might work for some but not me.
Thanks for the additional information. We've now received confirmation from a number of users that this issue is caused by setting the default installation location to the SD card. This is a developer tools option that can be reversed by running the following command:
adb shell pm setInstallLocation 0
Sent from my Nexus One using XDA Premium App
Click to expand...
Click to collapse
YES! After weeks of frustration, this finally worked for me (on stock N1)! Thanks!
hi.. does this work on htc magic? cuz i have the same problem. i can download and install other application but when i try installing superuser update fixer or updating my superuser.. theres a error saying "application cannot be installed in the default install location".. how can i fix this? pls help.. thanks
budols03 said:
hi.. does this work on htc magic? cuz i have the same problem. i can download and install other application but when i try installing superuser update fixer or updating my superuser.. theres a error saying "application cannot be installed in the default install location".. how can i fix this? pls help.. thanks
Click to expand...
Click to collapse
Did you make sure that you have everything set to install to internal? If you are running CyanogenMod, there is an option to do it under Settings -> CM Settings -> Applications, if you are running stock, there was a command through adb to make sure it is set properly (but you had to change it from earlier for it to not work).
help
jrushin said:
YES! After weeks of frustration, this finally worked for me (on stock N1)! Thanks!
Click to expand...
Click to collapse
please tell me how exactly and where ro write that line "adb shell pm setInstallLocation 0 "
i tried downloading something called " devoloper" tools but it still says "Application cannot be installed in the default installation location " and it doesnt install please help :S

Phone unusable/help me find the bad app

Well to get a long story short,im not a complete noob in the rooting,optimising,flashing bussiness.
So dont tell me flash this kernel or this stock rom,or this or that.
The problem after hours of searching is a bad app.
I have bought over 500 apps cause i want to support the community.
So,when i restore all my apps,when the phone starts,after the home screen loads AT THE MOMENT WHERE IN TOUCHWIZ OR ADW OR WHATEVER THE APPS ARE FINALLY LOADED
REBOOT,hot reboot most of the times...
I tried everything...startup managers to block everything and i mean everything...
Rescan media root app to stop scanning of sdcard...
Everything,no matter if it froyo,ginger,ics,stock,rooted or WHATEVER.
Of course i can install one app at a time an reboot,to see what happens but that will take ages and also maybe one app 'hit' with another...
So help me find the bad app...
I am no noob but i am no pro either...
So how do i take a logcat? Will that help either way?
Do i have to use adb?
help....
You are kidding right? You have 500 apps installed at the same time? Why on Earth? I think you are lucky the phone even tries to boot...
On to your problem at hand - no one here will be able to help you with the info you provided.
I thought their was like a 30 app limit to android?
Adb is your best bet.
Sent from my HD2 using xda premium
kylew1212 said:
I thought their was like a 30 app limit to android?
Adb is your best bet.
Sent from my HD2 using xda premium
Click to expand...
Click to collapse
Yes,i have so many apps and i want to find which app 'collides' with another or at least which app causes problems.
I used logcat with semaphore kernel and i have taken out some txt files just before the soft reboots...
How adb will help me.
I will find how to install adb but what then?
What command should i use?
And the phoen will be open?In recovery? What?
Please help....
karapoutsoglou said:
Yes,i have so many apps and i want to find which app 'collides' with another or at least which app causes problems.
I used logcat with semaphore kernel and i have taken out some txt files just before the soft reboots...
How adb will help me.
I will find how to install adb but what then?
What command should i use?
And the phoen will be open?In recovery? What?
Please help....
Click to expand...
Click to collapse
Well you certainly need apps 2 SD ... but you probably already have that.
To use adb, download it firstly. Its in the Google developer tools.
Once downloaded open terminal. Alt+ctrl+t. Use CD to change to the directory that contains adb in the platform tools. Once your in the folder containing adb, type "./adb logcat" without the quotes. This is for a computer running Ubuntu Linux also
Sent from my HD2 using xda premium
kylew1212 said:
Well you certainly need apps 2 SD ... but you probably already have that.
To use adb, download it firstly. Its in the Google developer tools.
Once downloaded open terminal. Alt+ctrl+t. Use CD to change to the directory that contains adb in the platform tools. Once your in the folder containing adb, type "./adb logcat" without the quotes. This is for a computer running Ubuntu Linux also
Sent from my HD2 using xda premium
Click to expand...
Click to collapse
thanx for the response.
i have set adb succesfully and i see the logcat on my cmd window running like hell most of the time.
i read that you can use some commands like -w -e etc to narrow the results to important messages? is that correct?
if yes,how you can do that? i mean the full command adb logcat....etc
thanx in advance
karapoutsoglou said:
thanx for the response.
i have set adb succesfully and i see the logcat on my cmd window running like hell most of the time.
i read that you can use some commands like -w -e etc to narrow the results to important messages? is that correct?
if yes,how you can do that? i mean the full command adb logcat....etc
thanx in advance
Click to expand...
Click to collapse
Unfortunately I have very little adb experience...
Maybe try something like the same command you used
"./adb logcat"
I guess going by what you're saying you could try something like
"./adb logcat -w" try that then maybe replace the w with e..
Keep in mind these are just guesses because I do not know for certain
I will research as soon as possible and write a quide for it as this can benefit lots of people
Sent from my HD2 using xda premium
kylew1212 said:
I will research as soon as possible and write a quide for it as this can benefit lots of people
Click to expand...
Click to collapse
thanx.
i had the same in mind.maybe something good can come out of this
Another way would be using ddms - connect your phone in debug and run ddms (it's included in the SDK Tools). It provides an interface to browse your device's logs and filter them according to your needs. I think you'll be able to locate that one which explains why your phone is crashing.
On second thought however - is it possible for you to turn the debug on?
avltree said:
Another way would be using ddms - connect your phone in debug and run ddms (it's included in the SDK Tools). It provides an interface to browse your device's logs and filter them according to your needs. I think you'll be able to locate that one which explains why your phone is crashing.
On second thought however - is it possible for you to turn the debug on?
Click to expand...
Click to collapse
thank you!
great idea,i will test it
yes,i can turn the debug on,because the phone crashes just when all the apps are loaded in the drawer.
it must be a bad app because i used to have many apps since froyo times and no problem.
like 500...and the phone was fast.
i really want to find that bad app and kill it
edit
================================
wow,ddms is a dream! thats what i was looking for!!!
thank you
Sorry for the double post but i thought it needed a single post.
Well,the problem is fixed with the help of you guys!!!
I was getting a hell lot of warnings about watchdog_n and stuff.
I googled it and appeared that a whole bunch of people had the same problem especially with nexus s etc.
They said it was due to some crappy app wanting to auto-sync.
So i did a wipe cache,wipe dalvik cache,fix fc and then when the phone rebooted i disabled the auto-sync.
Guess what,no more loops and soft reboots!!!
I still dont know what app is causing all the problems and propably never will,if you thing that the same apps in my tablet dont cause a thing,but after the auto-sync off the problem is gone.
Good thing though i dont need auto-sync cause its not the best solution...

How to get rid of beep sound in 2.3.6 ? :(

Hello all,
I have just upgraded to Gingerbread,
I am getting a annoying sound when the last call cost is displayed..
how can i get rid of this ?
Airtel in india displays the last call cost for each and every SMS sent.. Indians might be knowing about this better..
so, please anybody help me out of this
nobody ?
What you're seeking is to disable "USSD tone". I wonder why do you get this tone in the first place! 7 months with android and I never got USSD buzz in plenty of ROMs I have used.
By the way, I believe all you have to do is know which audio file its linking to while running that USSD code result.
What I suggest is, try looking first into /system/media/audio/ui directory by "Root Explorer" app. Listen all by playing audio files one by one. If there is the audio file what you're peeved of, mount system for R/W and delete it!
We could directly know the location of that media file by observing logcat. Just asking, have your set up ADB?
sorry,
But very noob here.. setting up ADB means ?
by the terms you are telling, i suppose there is something to do with the terminal emulator.. ? ? coz i have used some mount commands and some things to remove certain stock apps. could u give me any link of how to set up adb and steps of how to remove the stock sound and see the log too ? or tell by urself if possible ?
Thanks in advance
Yh after evry call and sms i get the beep soundto tell how much cost...i think it only occurs on 2.3.6
Sent from my GT-S5830 using xda premium
charlessxavier said:
sorry,
But very noob here.. setting up ADB means ?
by the terms you are telling, i suppose there is something to do with the terminal emulator.. ? ? coz i have used some mount commands and some things to remove certain stock apps. could u give me any link of how to set up adb and steps of how to remove the stock sound and see the log too ? or tell by urself if possible ?
Thanks in advance
Click to expand...
Click to collapse
Never mind. Forget ADB for now, did you try to go through the location I told you? /system/media/audio/ui
1) Go to market (Play Store), search for ES file explorer, install it.
2) Open it, go to favorite, select "/" (means, root in your FILE system).
3) Go to /system/media/audio/ui, listen each file, try to locate while audio file is played at the time of that USSD code.

Question Disable Permission Monitoring MIUI 14

Hi all
i am trying to give some adb permissions to my app without any luck.
I read that i need to disable permission monitoring in the developer menu, for those with MIUI. but i cant find anything there saying "Disable Permission Monitoring". is it something they have changed in the MIUI 14?
Any ways to disable it by other methods ?
Clawsman said:
Hi all
i am trying to give some adb permissions to my app without any luck.
I read that i need to disable permission monitoring in the developer menu, for those with MIUI. but i cant find anything there saying "Disable Permission Monitoring". is it something they have changed in the MIUI 14?
Any ways to disable it by other methods ?
Click to expand...
Click to collapse
Have you found it yet?
Please show me with !
n1dminhd said:
Have you found it yet?
Please show me with !
Click to expand...
Click to collapse
Have you found it yet

Categories

Resources