[Q] Can You Remove Google Wallet? - Samsung Galaxy Nexus

I flashed Wallet on using the zip method. I recently tried using it on a vending machine just to kicks and on a tap, it worked just fine. However, as soon as it initiates the transaction, Wallet force closes. The transaction still goes through.
Since the .apk method is available, I wonder if installing it using that would solve the problem. Is there a way to uninstall the Wallet I currently have? Or is there a fix for this issue that I'm not aware of?

TofuWarrior said:
I flashed Wallet on using the zip method. I recently tried using it on a vending machine just to kicks and on a tap, it worked just fine. However, as soon as it initiates the transaction, Wallet force closes. The transaction still goes through.
Since the .apk method is available, I wonder if installing it using that would solve the problem. Is there a way to uninstall the Wallet I currently have? Or is there a fix for this issue that I'm not aware of?
Click to expand...
Click to collapse
You should be able to use apps like File Expert or Root Explorer to navigate to /system/app/ and delete wallet.apk. You could also do it with adb in the terminal: adb shell
cd /system/app
rm wallet.apk
I have heard of some problems regarding the "secure element" though, so you might want to try backing it up along with its data with something like Titanium Backup. I don't know enough about the problem to say if that is necessary.

synesthete said:
You should be able to use apps like File Expert or Root Explorer to navigate to /system/app/ and delete wallet.apk. You could also do it with adb in the terminal: adb shell
cd /system/app
rm wallet.apk
I have heard of some problems regarding the "secure element" though, so you might want to try backing it up along with its data with something like Titanium Backup. I don't know enough about the problem to say if that is necessary.
Click to expand...
Click to collapse
Ah. Since I have GW working already, I don't want to risk screwing up my phone. Is there a way to get it to stop FC when I make a transaction?

Delete the .apk. It won't ruin your phone.

need a real way to reset the secure element
I installed via zip ... used Root Explorer to remove it tonight and even did the adb command to reset the element -
Code:
am broadcast -a android.intent.action.MASTER_CLEAR_NOTIFICATION [/indent]
I can download the Wallet app from Market which is great (thank you AT&T and Google) but I am getting the insufficient privileges error -
Insufficient secure element priviledges for this system image (release-keys).
Any thoughts on how to clear that ??

Related

[HOWTO] Install Latest WaveSecure in ROM

I found that [email protected]'s ROM had a good idea of adding WaveSecure to the system partition (preventing listing in the My Downloads part of market, and preventing uninstallation through normal means), but his version is slightly out of date now (latest version is 3.0.0.43)
As a result, I set about finding a means to install WaveSecure to ROM myself. Here are my findings for anyone interested in doing the same.
Install the latest version from the market (3.0.0.43 at this time). Now use adb pull to get it off the device onto your pc
Code:
adb pull /data/app/com.wsandroid.apk D:\com.wsandroid.apk
Now open Market back up from the menu, go to My Downloads, and choose Wavesecure Mobile Security Beta and uninstall it for just now (to get it off the data/A2SD location that normal apps are stored in) - thanks, my-space!
Then push the saved apk to the system partition after a remount (to make it read/write)
Code:
adb remount
Code:
adb push D:\com.wsandroid.apk /system/app/com.wsandroid.apk
Then set it all up as usual (will appear in apps list immediately)
and remount system as read only again
Code:
adb remount
And that seems to be it so far. Remember to change the D:\com.wsandroid.apk path to whatever you actually used.
Let me know if anyone finds any problems with this, but I've done it and, fingers crossed, it's worked OK for me.
Obviously, this is only for root users, and there are no guarantees for this.
Couple of questions that might need looked into -
- Do settings carry across after a wipe (as Paul claims Modaco's version does. I've never tried it so can't confirm)
- Is there any disadvantage to using this method? (I guess this is all Modaco's update.zip does, but I don't know)
you forgot to metion to uninstall wavesecure before it is pushed back into system....
my_space said:
you forgot to metion to uninstall wavesecure before it is pushed back into system....
Click to expand...
Click to collapse
Oops! Knew I'd forget something, as I always seem prone to do. Well spotted, and OP corrected.
Thanks
No worries I got a bit confused when i pushed it back onto the phone and was still in my downloads...
I've rooted my phone already but whenever i try to use the command adb remount I get "remount failed: operation not permitted". Suggestions?
I see more and more often, redundant threads.
What How-to will you post next time? How to change backlight settings?
You're pointlessly spamming the board.
I can't say i agree with the 'pointlessly spamming the board' comment, but i would have thought this would at least be better in the applications and themes subforum rather than in development.
Don't forget that an awful lot of android users (and more recently all HTC devices) are more and more 'newbs' and need stuff like this.
While this is good and provides info that people like that need (and myself cos i'm crap at adb and stuff like that so wouldn't have had a clue how to do this previously), maybe the development forum is not the best place for it....
I'm guessing one won't be notified via Market if there's an update available if you push an app to /system/app/, right?
usb0 said:
I'm guessing one won't be notified via Market if there's an update available if you push an app to /system/app/, right?
Click to expand...
Click to collapse
You won't be notified, correct
If anybody doesn't already know, WaveSecure have started hosting update.zip files. This means it's now easy to update your "baked-in" version of WaveSecure without much messing around.
https://www.wavesecure.com/installations/update.zip
Download the file, save it to your SD card, reboot into the recovery console and choose the option to apply an update.zip file.
Voila! Your version of WaveSecure will be updated to the very latest version
DJBenson said:
[...]
Click to expand...
Click to collapse
That's really awesome! Thanks for the tip!
Just a question of curiosity: If I push an app to /system/app/ and then issue the rm-command to remove its apk, won't there be lying a bunch of files associated with the program and with absolutely no function, since the app itself is removed? How do I know the name of these files and where they are located for removal?
I'm a bit confused by that question. My understanding (which may be incorrect but from what I've seen of the "guts of a ROM" appears to be the case) is that the applications reside in the apk files, they are not extracted. If you list the content of any of the app folders (/system/app, /data/app or /data/app-private) then all you get is a bunch of apk files (and some odex files). So when you 'push' an apk to the phone, that application is then "installed", when you rm/remove an application, you do so by removing the apk.
if you remove the apk you have left something in /data/dalvik-cache. wiping the dalvik-cache every now and then helps reclaiming that space, though it is not much.
the app settings and data are stored in /data/data, you could delete the files manually by checking their names (no idea if/what convention the names follow), imho not worth the trouble as it is only a few kb.
odex files aren't created if you don't do in a PITA process manually. don't worry about them, don't touch them, then you're good. odex files are only for system apps.
I bought a used phone and it had WaveSecure already installed. I couldn't find it in the applications list to uninstall, so I did a factory reset on the phone. The application was still there and it still didn't show up in the applications list.
I have the Superuser Permissions application, so someone must have rooted it.
Is there any way to uninstall this?
motomeup said:
I bought a used phone and it had WaveSecure already installed. I couldn't find it in the applications list to uninstall, so I did a factory reset on the phone. The application was still there and it still didn't show up in the applications list.
I have the Superuser Permissions application, so someone must have rooted it.
Is there any way to uninstall this?
Click to expand...
Click to collapse
""Just (re)flash a ROM................""
I just noticed that WaveSecure now points to this post for instructions to install as system application, and I am not sure that the update.zip maintained with them is up-to-date.
However, you can now select to download the .apk directly to your PC thus eliminating the first Market step in this guide.
strife242 said:
I just noticed that WaveSecure now points to this post for instructions to install as system application, and I am not sure that the update.zip maintained with them is up-to-date.
However, you can now select to download the .apk directly to your PC thus eliminating the first Market step in this guide.
Click to expand...
Click to collapse
I believe it is kept up to date, as VillainROM kitchen uses it as a source for the WaveSecure app (fetched each night to keep it up-to-date).
I've certainly never had any problems with it.
Excellent guide Pulser,... I should really reinstall Wavesecure now Im not using a MoDacO Custom ROM. Nice one bruv.
Found this to be helpful.
https://www.wavesecure.com/blog/how-to-make-wavesecure-hard-reset-proof.aspx
I just did a search in the Market fro 'wavesecure' and two things popped up WaveSecure and WaveSecure UninstallProtection Add-on which needs to be uninstalled before WaveSecure and if the add-on is uninstalled it is supposed to lock the phone. (all this is in the description I have yet to try)

Removing pre-installed applications (Bell HTC Desire Z)

Hi guys, Basically I'm sick of all the trialware that Bell has put on the thing and would like to get rid of it. I have root and root explorer installed. I don't really want to reflash my phone and follow the debranding procedure. So is there any way I can achieve this ?
I have tried deleting the .apk files from the system/app folder as well. The applications just reappear after a couple of minutes.
holycow123 said:
Hi guys, Basically I'm sick of all the trialware that Bell has put on the thing and would like to get rid of it. I have root and root explorer installed. I don't really want to reflash my phone and follow the debranding procedure. So is there any way I can achieve this ?
Click to expand...
Click to collapse
Pretty sure there are quite a few questions/guides about this out there already if you do a search...
In short, you can delete the appropriate APK from your /system/app directory (or use the "pm uninstall" command in terminal). Alternatively, you can simply disable the app with a "pm disable" command (see here: http://forum.xda-developers.com/showthread.php?t=809231). This is usually the safer route---disable the app, make sure your phone is still running properly, then uninstall it if you still want to. If you want a nicer interface for doing all this, you can download TitaniumBackup from the Market (I believe the free version allows both uninstalling and freezing/disabling apps).
ianmcquinn said:
Pretty sure there are quite a few questions/guides about this out there already if you do a search...
In short, you can delete the appropriate APK from your /system/app directory (or use the "pm uninstall" command in terminal). Alternatively, you can simply disable the app with a "pm disable" command (see here: http://forum.xda-developers.com/showthread.php?t=809231). This is usually the safer route---disable the app, make sure your phone is still running properly, then uninstall it if you still want to. If you want a nicer interface for doing all this, you can download TitaniumBackup from the Market (I believe the free version allows both uninstalling and freezing/disabling apps).
Click to expand...
Click to collapse
Uninstalling in Titanium Backup didn't work either. Freezing however did. I'll keep it this way till I put some Cyanogen magic on it. Thank you kind sir!
holycow123 said:
Uninstalling in Titanium Backup didn't work either. Freezing however did. I'll keep it this way till I put some Cyanogen magic on it. Thank you kind sir!
Click to expand...
Click to collapse
Interesting that Titanium Backup didn't work either (or that deleting the apk from /system/app failed as well). Be sure in your Titanium Backup preferences, you select "Chuck Norris" mode if you didn't already.

Uninstalling an app you can't see.

Hey,
Like the topic says.. just wondering how you go about uninstalling an app you can't see. When I use a backed up apk file to install it, it says it will replace data and such, then I click okay, and then gives me a message, "application not installed". So that's how I know the app is there...
Its just that nothing recognizes the app as being installed. No uninstall app, no system app... anyone know how to get rid of this app by means of file exploring and not wiping the phone clean??
Thanks all.
Sent from my HTC Vision using Tapatalk 2
Maybe the "application not installed" means that it wasn't installed. This would explain why you can't see it.
Under settings/applications/all, can you find it there? You might be able to uninstall it from there.
Can you find it with a file manager? You could delete it, but it might leave the data behind. This is usually in /data/data if you want to scrub things clean.
Lastly, and my personal favorite, the command line. This is the no-click method. If you know the java name, you could probably type "pm uninstall android.your.package" Try typing "pm" from the command line to get the syntax/ Some thlng like "pm list" will give you a list of installed pacakges.
Be careful what you delete- some things don't react well with being deleted.
there may be some confusion here, you say the reason you know the app is in your phone and hidden is when you try to install it is says that it will be replaced? well you can use root explorer or similar file explorer to hunt it down, check:
/system/app
/data/app
/sd-ext/app
/sdcard
demkantor said:
there may be some confusion here, you say the reason you know the app is in your phone and hidden is when you try to install it is says that it will be replaced? well you can use root explorer or similar file explorer to hunt it down, check:
/system/app
/data/app
/sd-ext/app
/sdcard
Click to expand...
Click to collapse
Well the way I know the app is there is because when I try to install it. It prompts me and tells me that the program will be replaced but user data and settings will be saved. Usually if an app is not installed on the phone there is no prompt and you just have to hit install.
Sent from my HTC Vision using Tapatalk 2
gee one said:
Maybe the "application not installed" means that it wasn't installed. This would explain why you can't see it.
Under settings/applications/all, can you find it there? You might be able to uninstall it from there.
Can you find it with a file manager? You could delete it, but it might leave the data behind. This is usually in /data/data if you want to scrub things clean.
Lastly, and my personal favorite, the command line. This is the no-click method. If you know the java name, you could probably type "pm uninstall android.your.package" Try typing "pm" from the command line to get the syntax/ Some thlng like "pm list" will give you a list of installed pacakges.
Be careful what you delete- some things don't react well with being deleted.
Click to expand...
Click to collapse
Can't find it under settings/applications/all
I'll try to find it using root explorer... and if all else fails.. I guess I'll have to live without using the app or try the command line method.
Sent from my HTC Vision using Tapatalk 2
If you have upgraded from say GB to ICS, the app might not install because it is a GB app. Try upgrading from the market. Otherwise, I would guess that you don't actaully have the app installed, perhaps just the data.
gee one said:
If you have upgraded from say GB to ICS, the app might not install because it is a GB app. Try upgrading from the market. Otherwise, I would guess that you don't actaully have the app installed, perhaps just the data.
Click to expand...
Click to collapse
Well darn. Gotta fish this thing out then. Heh. There's gotta be a way! I guess I'll upgrade through the market if possible solutions are exhausted.
Sent from my HTC Vision using Tapatalk 2
More technical, but it was mentioned to use the package manager. Under the terminal or using adb shell enter:
Code:
pm list packages
This gives you a list of all the packages installed listed as something like android.application.com. Most are self explanatory. Using that information you can use:
Code:
pm path android.application.com
That gives you the location of the apk (i.e. /system, /data/app, etc). Then delete via explorer or use adb to remove:
Code:
adb uninstall /location/application.apk
I came across the same error when I manually copied an APK into /system/app folder. It showed in my drawer but was unable to execute it. In order to get rid I had to install it as well, then I was able to uninstall it which made is disappear. Any chance its something like that?
progress ughtsrr
Have you tried clearing the google play store data? If this has been corrupted with some partial entry for your app it might leave it in there and hence why you can't install/uninstall it...
Menu -> Settings -> Apps (and/or manage applications as per your ROM)
Choose "Google Play Store", then "Clear Data" and "Clear Cache"
Close the settings, then see if you can re-install the app.
Failing that, try the above, followed by a wipe cache/wipe Dalvik cache at recovery and see if that helps.
Good luck

[Q] "No SD Card" error in Chrome

I updated my Vzw GNex to the vzw 4.2.2 ota this afternoon. Everything works fine except when I try to download something from chrome I get a message saying "No SD card" when I click a download link. I can access the sd card just fine with rootexplorer and the stock browser downloads things just fine. I tried clearing cache and data for chrome and even uninstalled and reinstalled it. Anyone else having this issue? Is there a way to fix it?
MurdocZero said:
I updated my Vzw GNex to the vzw 4.2.2 ota this afternoon. Everything works fine except when I try to download something from chrome I get a message saying "No SD card" when I click a download link. I can access the sd card just fine with rootexplorer and the stock browser downloads things just fine. I tried clearing cache and data for chrome and even uninstalled and reinstalled it. Anyone else having this issue? Is there a way to fix it?
Click to expand...
Click to collapse
I am seeing the same issue on my GNex running AOKP mr-1 build 6. I have not found a fix yet.
Of note: I do NOT have this issue on my Xoom running 4.2.2 [baked_wingray_bb-8]
Try making a copy of your sdcard and factory resetting, then copy all the files over using MTP, not ADB.
I get that if i copy files over using ADB.
Mach3.2 said:
Try making a copy of your sdcard and factory resetting, then copy all the files over using MTP, not ADB.
I get that if i copy files over using ADB.
Click to expand...
Click to collapse
Mach - Thank you for your response. I have to ask though, is there any other way?
Per your recommendation I began to copy my sdcard but quickly realized that given the amount of data on my phone this would be painful using standard methods. Windows [7] was reporting no progress and seemed as if it was going to take forever to copy the contents and applications like RichCopy and TeraCopy do not see MTP devices
In the end, I simply used 'adb pull' to copy the contents. So, while it's good that I have a copy, I'm not sure how I plan to restore the copy after a factory reset without using 'adb push', which you said sometimes causes the issue. I always thought that using 'adb' was considered more reliable than the MTP interface.
Recommendations?
Thank you.
Hi, if you are running Xprivacy you should check if you have denied the 'Storage' permission for Google Chrome. That was the problem in my case.. :silly:
getting same problem on my moto g after rooting and flashing sm roms
Megabliss said:
Hi, if you are running Xprivacy you should check if you have denied the 'Storage' permission for Google Chrome. That was the problem in my case.. :silly:
Click to expand...
Click to collapse
hy its not the thread for moto g bt im getting same problem on my cell since i rooted it .. and by the way what u mean by xprivacy..??? xplain steps to allow it...
it seems like my system cant make changes to internal sd .. it cant take screenshots,gallerythumbnals all gone etc. -_-
I had similar troubles after changing roms on my N5, found this that fixed it just download terminal emulator and do the given commands, hope it helps people in the future: http://blog.wadegarrett.com/2014/08/10/easy-solution-for-sdcard-error-on-android-l
I have the same problem and the info in the link didn't work
CalebQ42 said:
I had similar troubles after changing roms on my N5, found this that fixed it just download terminal emulator and do the given commands, hope it helps people in the future
Click to expand...
Click to collapse
Thanks! It worked for my Xperia z ultra
lakhwani009 said:
hy its not the thread for moto g bt im getting same problem on my cell since i rooted it .. and by the way what u mean by xprivacy..??? xplain steps to allow it...
it seems like my system cant make changes to internal sd .. it cant take screenshots,gallerythumbnals all gone etc. -_-
Click to expand...
Click to collapse
Hi, sorry it took a long time to reply, I just saw it. Xprivacy is an Xposed mod to manage the permissions for each app. If you haven't installed it then it is not causing you any problems!
In regards to my aforementioned issue.
"Cannot download due to SD card missing" Error.
Simply open a terminal emulator and type in the following.
su
restorecon -FR /data/media/0
Reboot and it should work thereafter.
wrong thread, genius, sorry.
(that is the solution though )
CalebQ42 said:
I had similar troubles after changing roms on my N5, found this that fixed it just download terminal emulator and do the given commands, hope it helps people in the future: http://blog.wadegarrett.com/2014/08/10/easy-solution-for-sdcard-error-on-android-l
Click to expand...
Click to collapse
I had the problem with my Galaxy S3 running Lineage OS 14.1. This helped, Thanks!
I have just found another and simply solution in no rooted devices. Just open file manager and rename 'Download' folder to 'Download2' and then the system will automatically recreate 'Download' folder. Now, you are able to download.
mbahar92 said:
I have just found another and simply solution in no rooted devices. Just open file manager and rename 'Download' folder to 'Download2' and then the system will automatically recreate 'Download' folder. Now, you are able to download.
Click to expand...
Click to collapse
That worked for me. You saved my day!

[Q] permission denied when ls says I have permission?

I'm trying to run rsync to backup files from my new Nexus 7, including the contents of the Titanium Backup directory. I've checked the directory, and ls -l shows all files with rw-rw-r- permission, but rsync gets "permission denied" errors when trying to read the .tar.gz files (it has no problems reading the .properties files which show up in ls with the exact same permission).
Does this seem like some new kind of wacky security feature in 4.3, or am I missing something obvious and stoopid?
On a possibly related note, SuperSU just spun for 5 minutes trying to update the su binary. Rebooted and told it to update the binary using recovery, and that worked fine.
I mailed Titanium track about this, and got a reply saying they were aware of the problem and are working on a fix, but I still don't understand what the actual problem is. Has Android 4.3 adding some sort of additional ACLs or started using existing ones differently? What can I use to view them (if they are there). I'm really curious to know what the heck is actually going on.
If someone could solve this issue, I would greatly appreciate it.

Categories

Resources