Related
Does anyone know where those installed-apps getting stored on the Nook?
I thought they stored in /system/app but when browsing there, it only seems having those built-in apps such calendar, email, market, ...., and not those that manually downloaded and installed such google earth, astro, ...
Thanks
votinh said:
Does anyone know where those installed-apps getting stored on the Nook?
I thought they stored in /system/app but when browsing there, it only seems having those built-in apps such calendar, email, market, ...., and not those that manually downloaded and installed such google earth, astro, ...
Thanks
Click to expand...
Click to collapse
If you have a SD card installed, it depends on the app. There is a setting in CM settings for applications to by default it set to automatic. In that case, the app chooses where it wants to install. You can change it to card or internal. I believe there is also an internal partition that mimics SD so they may be going there. I don't have mine with me to look right now. Perhaps someone can provide more detail.
If you're just looking for the apk, I usually get the path via package manager in terminal.
Open terminal (or adb shell) then enter the following command
pm list packages
This will show a list of packages for the system installed. They are usually named com.android.application.name (that an example) or similar, so its easy to find which one you want. After you find the appropriate package you can use the following command to find where it is location
pm path com.android.application.name
It should spit out the path and you can find it via file manager or anything else.
I'm sure there is an easier way to do it, but that usually works for me.
Big thanks to both patruns and biohazrd for your quick response.
@patruns,
I tend to use my NC w/o an uSD card, so no, I don't have it installed.
Yes, I am aware of the "application" setting and I did set it to "internal" from the default "automatic".
I keep thinking they were stored under /system/app but apparently not.
If you do have time, pls help with the answer. TIA
@bio,
Never think of that way. I'll definitely try it out, hopefully I can learn something new.
Thanks, m8
votinh said:
Does anyone know where those installed-apps getting stored on the Nook?
I thought they stored in /system/app but when browsing there, it only seems having those built-in apps such calendar, email, market, ...., and not those that manually downloaded and installed such google earth, astro, ...
Thanks
Click to expand...
Click to collapse
If you're looking for the .apk files for stuff for installed apps, they're in /data/app.
Downloaded apps (like a beta linked from a webpage) land in /sdcard/download (at least with the default browser), but the .apk in /data/app gets overwritten when you install.
At least, that's what the sizes and mod times on the files would indicate, and the only obvious jarfiles I can find are from Apparatus (in /sdcard/Apparatus) and in /system/framework.
If you're looking for app config info and minor storage, that's in /data/data, in a stylized tree that (I suspect) lets the app manager find and clear an app's data and cache when you tell it to, and in /sdcard for some apps.
I'm having a hard time making things put their data in /emmc, but the default music player finds .mp3 files in /emmc/My Files/Music automagically.
The app framework hides much of this inside abstracted APIs, so the app itself may not actually know where its files are. Try getting a filename out of the Music app...
stolenmoment said:
If you're looking for the .apk files for stuff for installed apps, they're in /data/app.
Downloaded apps (like a beta linked from a webpage) land in /sdcard/download (at least with the default browser), but the .apk in /data/app gets overwritten when you install.
Click to expand...
Click to collapse
.apk files are what I am looking for. I'll look into the /data/app folder.
You meant, I won't be able to get those .apk files from the /data/app folder after installed since they gets over-written?
Thanks stolenmoment
I found .apk files in 2 locations:
mnt/asec & system/app
stolenmoment said:
If you're looking for the .apk files for stuff for installed apps, they're in /data/app.
Downloaded apps (like a beta linked from a webpage) land in /sdcard/download (at least with the default browser), but the .apk in /data/app gets overwritten when you install.
At least, that's what the sizes and mod times on the files would indicate, and the only obvious jarfiles I can find are from Apparatus (in /sdcard/Apparatus) and in /system/framework.
If you're looking for app config info and minor storage, that's in /data/data, in a stylized tree that (I suspect) lets the app manager find and clear an app's data and cache when you tell it to, and in /sdcard for some apps.
I'm having a hard time making things put their data in /emmc, but the default music player finds .mp3 files in /emmc/My Files/Music automagically.
The app framework hides much of this inside abstracted APIs, so the app itself may not actually know where its files are. Try getting a filename out of the Music app...
Click to expand...
Click to collapse
/data folder is empty. Nothing in there.
/sdcard/download. I don't have an external uSD installed so /sdcard is empty.
I don't even know where those downloaded apps stored.
patruns said:
I found .apk files in 2 locations:
mnt/asec & system/app
Click to expand...
Click to collapse
/mnt/asec is empty and nothing in there.
/system/app has a lot of .apk files but all of them are the built-in apps, not the manually downloaded apps.
Maybe stolen was right as they got over-written after installed.
I did what biohazrd instructed and sure enough, all the .apk files (packages actually) are indicated storing under /data/app, which exactly what stolen has said earlier.
How come I see NOTHING there. I'm sure I am not blind as I tried both Astro Manager and built-in File Manager.
Are you sure you gave the file manager root permissions? You can usually find this in settings.
---
- Sent from my LG Optimus V using Tapatalk
votinh said:
I did what biohazrd instructed and sure enough, all the .apk files (packages actually) are indicated storing under /data/app, which exactly what stolen has said earlier.
How come I see NOTHING there. I'm sure I am not blind as I tried both Astro Manager and built-in File Manager.
Click to expand...
Click to collapse
Astro doesn't do root access. For the best filesystem digging, buy Root Explorer. Yes, it's a paid app, but it was the first app I bought; this is why.
Astro claims that /data is empty for me too, but Root Explorer shows me everything.
Sent from my NookColor using XDA Premium App
votinh said:
/data folder is empty. Nothing in there.
/sdcard/download. I don't have an external uSD installed so /sdcard is empty.
I don't even know where those downloaded apps stored.
Click to expand...
Click to collapse
Look in /emmc/download; that's the /media NC partition and is supposed to be treated like an SD card.
If you get Root Explorer, do a find for apk and see what turns up. The .dex files are dalvik "object" files, but they contain the apk filename they were compiled from, so they'll show up in the search results.
Sent from my NookColor using XDA Premium App
stolenmoment said:
Astro doesn't do root access. For the best filesystem digging, buy Root Explorer. Yes, it's a paid app, but it was the first app I bought; this is why.
Astro claims that /data is empty for me too, but Root Explorer shows me everything.
Sent from my NookColor using XDA Premium App
Click to expand...
Click to collapse
That may be it.
Will do
Thanks m8
stolenmoment said:
Look in /emmc/download; that's the /media NC partition and is supposed to be treated like an SD card.
If you get Root Explorer, do a find for apk and see what turns up. The .dex files are dalvik "object" files, but they contain the apk filename they were compiled from, so they'll show up in the search results.
Sent from my NookColor using XDA Premium App
Click to expand...
Click to collapse
I don't have my NC with me now but I swear to Buddha that I don't have "download" folder under eMMC. Only .LOST (directory?) and some of my own self-created folders.
Anyway, will take a look at it again.
Until I get the Root app, I rest my case here.
Big thanks to all
votinh said:
Until I get the Root app, I rest my case here.
Big thanks to all
Click to expand...
Click to collapse
I'm going to assume you want to pull the apks off the device?
biohazrd51 said:
I'm going to assume you want to pull the apks off the device?
Click to expand...
Click to collapse
Yes, m8, that's what I intend to do.
In some case, when I boot off the uSD (both CM7 and Honeycomb), some apps were not available on Market for some reason, so I try to get those apk files that currently installed on my NC eMMC for sideloading them later on the uSD boot-off.
votinh said:
Yes, m8, that's what I intend to do.
In some case, when I boot off the uSD (both CM7 and Honeycomb), some apps were not available on Market for some reason, so I try to get those apk files that currently installed on my NC eMMC for sideloading them later on the uSD boot-off.
Click to expand...
Click to collapse
Well, there are a few ways to get around that.
1) Use adb to copy the .apk off the device.
adb pull /data/app/nameofapplication.apk c:\locationyouwanttocopyto
Use the push command to send it to it/another device.
http://developer.android.com/guide/developing/tools/adb.html
2) Another way to get around the new market device restrictions is to uninstall the Market updates OR find an old gapps zip file and sideload vending.apk. Either one of these will revert the market back to old where devices restrictions weren't there.
I know either of these methods will work in CM7. I haven't touched HC so I'm not sure.
Thanks again, bio
Will definitely try it out.
votinh said:
I don't have my NC with me now but I swear to Buddha that I don't have "download" folder under eMMC.
Click to expand...
Click to collapse
I humbly apologize for being wrong. I don't have one, either...
Do you have the Downloads app? Does it show any files? You can download things w/o the SD in, right?
I took out my SD and it remembers the downloads, but can't find them.. I'm gonna reboot and play around.
Sent from my NookColor using XDA Premium App
can someone please explain to me why, since updating to 4.2, I have what looks like a duplicate of my SD card contents in a sub folder called storage/emulated/0/?
all my gallery apps, Gallery, DroidIris etc. see duplicates of all my pictures now?
And If I save a pic from a browser It points to the folders in storage/emulated/0/, not the SD card ones?
deleting any file in one folder effects the other, so it is probably not a true duplicate thats taking up space is it?
I assume this has to do with the multi user addition to 4.2, but I have not set up a second user at all.
Does this just occur to people upgrading, or to people who installed a fresh version as well?
Cheers.
CarsnGadgets said:
can someone please explain to me why, since updating to 4.2, I have what looks like a duplicate of my SD card contents in a sub folder called storage/emulated/0/?
all my gallery apps, Gallery, DroidIris etc. see duplicates of all my pictures now?
And If I save a pic from a browser It points to the folders in storage/emulated/0/, not the SD card ones?
deleting any file in one folder effects the other, so it is probably not a true duplicate thats taking up space is it?
I assume this has to do with the multi user addition to 4.2, but I have not set up a second user at all.
Does this just occur to people upgrading, or to people who installed a fresh version as well?
Cheers.
Click to expand...
Click to collapse
I think this has been added as part of the multi-user feature and is where the data/content is stored for other users. It has been mentioned on the forum somewhere else, cant remember where I seen it though.
I also wondered this but then thought logically.
Two users using the same SD card wouldn't be a good idea.
So they sort of virtualise the SD card, and then when a new user is created a sort of partition is created for the user.
I was wondering what that was in ASTRO I thought it was something I did wrong and yes if you delete one file it will end up deleting both of them so be careful luckily I deleted some old downloads I didn't need anymore GOD BLESS YOU GUYS
Sent from my Nexus 7 using xda app-developers app
thats all fine, thanks guys,
but now, if I download a new pic from dolphin browser to the /emulated/0/pictures folder, the gallery sees my SD/pictures as well as the /emulated/0/pictures folder, the original has 99 files in, and the new one 1 file in, both are called "pictures".
the "save picture as" action opens up its own file explorer, and it wont let me go back far enough in the file tree to access the SD/pictures folder so I can only save in the new /emulated/0 folder and its sub folders?
cheers.
I can't find the folder on my pc. I am trying to run a backup app and it stores it there. I try to replace the backup location to downloads for example and it won't work. It's driving me mad.
The linked directories are linked to look like separate directories but they link to what is called a mount point that the actual physical storage and the actual file. What you do in any of folders will be done in all the folders.
I'm still wrapping my mind and this and my Linux knowledge it's weak. So I'm not going to try to suggest how to deal with these folders. As much as possible I'm letting the app handle the files.
Sent from my Nexus 7 using xda premium
CarsnGadgets said:
can someone please explain to me why, since updating to 4.2, I have what looks like a duplicate of my SD card contents in a sub folder called storage/emulated/0/?
all my gallery apps, Gallery, DroidIris etc. see duplicates of all my pictures now?
And If I save a pic from a browser It points to the folders in storage/emulated/0/, not the SD card ones?
deleting any file in one folder effects the other, so it is probably not a true duplicate thats taking up space is it?
I assume this has to do with the multi user addition to 4.2, but I have not set up a second user at all.
Does this just occur to people upgrading, or to people who installed a fresh version as well?
Cheers.
Click to expand...
Click to collapse
Same for me. Music player, gallery and other apps now show two copies of files. Any solution to fix this yet?
algus said:
Same for me. Music player, gallery and other apps now show two copies of files. Any solution to fix this yet?
Click to expand...
Click to collapse
I think you are confusing a symlink'd directory with a second copy.
No one - so far - has reported a real problem related to duplicate file - so don't be expecting a fix.
Spend the time reading up on Linux directory structures instead.
rmm200 said:
No one - so far - has reported a real problem related to duplicate file - so don't be expecting a fix.
Spend the time reading up on Linux directory structures instead.
Click to expand...
Click to collapse
This.
It's not broken do don't expect a fix. It only 'looks' like you have duplicate files. A change you make in any single place will show up in all locations. Delete a file in one place it will be gone everywhere. The whole file system is an optical illusion. Layers on layers of naming parts of the file system.
For instance /sdcard is actually /data/media/0 if you created another user on your tab they would get /data/media/1 but they would find their files under /sdcard in a file manager.
Sent from my Nexus 7 using xda premium
I understand that it is a link. As I said problem is that applications show two copies of all files put in /sdcard folder. Because applications treat each link as a separate file. This is exactly what the original poster and I wrote in our posts.
So far I fixed this problem for myself by deleting all files from /sdcard (they disappeared from other linked locations as well) and saving them back straight to /storage/emulation/0 (they appeared in other linked locations, including /sdcard, but this time the gallery and other apps show single copy of each file in their collections).
This is not confortable for a typical user to learn about all these linked folders and I consider it as a drawback of Jelly Bean.
algus said:
I understand that it is a link. As I said problem is that applications show two copies of all files put in /sdcard folder. Because applications treat each link as a separate file. This is exactly what the original poster and I wrote in our posts.
So far I fixed this problem for myself by deleting all files from /sdcard (they disappeared from other linked locations as well) and saving them back straight to /storage/emulation/0 (they appeared in other linked locations, including /sdcard, but this time the gallery and other apps show single copy of each file in their collections).
This is not confortable for a typical user to learn about all these linked folders and I consider it as a drawback of Jelly Bean.
Click to expand...
Click to collapse
I am trying to understand what you are seeing.
On my device, the gallery app only shows pictures in my user: emulated/0. This is from selecting a picture and then asking for info on it.
What apps are showing duplicates, other than a file explorer that you would expect to show symlinks?
I should add - are you copying pictures directly to /sdcard from somewhere else?
Well I had a problem...because of all the multiuser crap I was unable to restore a titanium backup cause of all the emulated directories that another user makes...I had to delete every /0 directory that it made cause if you install another Rom it makes a new /0 directory inside the other /0 directory so after flashing CM10, MIUI and slim bean I finished with a directory like this: sdcard0/0/0/0.
Sent from my GT-I9300 using xda app-developers app
restoring backups seems to be a problem too in cwm. Hmm how to fix it
Sent from my Nexus 4 using xda app-developers app
I ran into this problem with Titanium Backup and my Nexus 7. I was trying to copy the titanium backup folder on the Nexus 7 to my windows PC (also tried mac too) as it was taking up a lot of space on the Nexus but Windows and Mac wouldn't have any of it. It just copied the folder and not the contents. Android file Transfer manager on mac just keeped crashing. I did not try adb pull folder with WugFresh toolkit, so that may work. I ended up copying from the nexus 7 to a USB drive using an OTG cable.
I been looking into this too, this is what I find so far I did a fresh install after I installed my Rom I wipe storage on my N7 so I have a clean storage nothing on it about 27.80gb after I installed one game that is 2gb and its show on both storage emulated and 0 n after my available space is 23.72gb. So I think its does create a duplicate that take space. But Im not sure.I going to run some more tests. If this is true this kinda suck cus then my 32gb n7 is only 16gb then.
Ps. Also if u reboot ur n7 and u go to storage there is another folder under emulated with 0 with the same files you can deleted this folder is save you won't loose anything but if you reboot and go back to storage the file reappear and you can delete but once u reebot again it will reappear again and over again.
Sent from my EVO using xda premium
No way are there 2 copies of files (unless you are auto backing up, which I do). My free space was 3.9gb before and after 4.2. Have all the extra meaningless folders.
You could think of the emulated storage locations like a shortcut. You could place multiple shortcuts to your 'My Documents' folder on your desktop without creating multiple copies of 'My Documents'.
Same problem with Galaxy Nexus
I have the same problem with my Galaxy Nexus and Android 4.2.1
In my Windows Explorer i dont see the same files like in my Phone with Total Commander on my Storage.
This is not funny.
Hey guys.
I'm a bit intrigued. There's an unknown folder in the root of my phone's internal memory. I delete it every few weeks when I check the storage and sweep all the junk I might find in there.
Here's the folder structure.
GT-I9505\Internal storage\.sp\.94\.743\.cache\LazyList.
Inside that last folder (LazyList), there's a 23 KB file named 663014360. It has no extension. Opening it with Notepad / WordPad reveals a lot of unreadable characters (of course...).
I am having a hard time tracing it back to any app (if it's an app that's creating it, or the ROM itsellf ).
Does anyone here know what this .sp sh*t is all about...?
For what it's worth, I am running the latest SlimKat ROM.
Formhault said:
Hey guys.
I'm a bit intrigued. There's an unknown folder in the root of my phone's internal memory. I delete it every few weeks when I check the storage and sweep all the junk I might find in there.
Here's the folder structure.
GT-I9505\Internal storage\.sp\.94\.743\.cache\LazyList.
Inside that last folder (LazyList), there's a 23 KB file named 663014360. It has no extension. Opening it with Notepad / WordPad reveals a lot of unreadable characters (of course...).
I am having a hard time tracing it back to any app (if it's an app that's creating it, or the ROM itsellf ).
Does anyone here know what this .sp sh*t is all about...?
For what it's worth, I am running the latest SlimKat ROM.
Click to expand...
Click to collapse
try this app - https://play.google.com/store/apps/details?id=com.kokanes.fileextensiondirectory
Sent from my GT-I9500
Formhault said:
Hey guys.
I'm a bit intrigued. There's an unknown folder in the root of my phone's internal memory. I delete it every few weeks when I check the storage and sweep all the junk I might find in there.
Here's the folder structure.
GT-I9505\Internal storage\.sp\.94\.743\.cache\LazyList.
Inside that last folder (LazyList), there's a 23 KB file named 663014360. It has no extension. Opening it with Notepad / WordPad reveals a lot of unreadable characters (of course...).
I am having a hard time tracing it back to any app (if it's an app that's creating it, or the ROM itsellf ).
Does anyone here know what this .sp sh*t is all about...?
For what it's worth, I am running the latest SlimKat ROM.
Click to expand...
Click to collapse
It is very good that although you are deleting the launcher's (or some other app) cache, it restores it.
I can understand that you're mad about it and you would like that your launcher (or app) shall not create any cache and consequently would work slower.
As well I appreciate your huge work with tracing it (5th link in google search provides the answer what is it).
If you really care what is, your work would be pretty simple. Factory reset your phone, start each built in ROM app and check the folder after. Then, install your apps one by one, starting each of it and each time after closure checking the folder. Easy.
anu.cool said:
try this app - https://play.google.com/store/apps/details?id=com.kokanes.fileextensiondirectory
Click to expand...
Click to collapse
Sorry, but that app is of no use to me since the file in question has no extension.
spamtrash said:
It is very good that although you are deleting the launcher's (or some other app) cache, it restores it.
I can understand that you're mad about it and you would like that your launcher (or app) shall not create any cache and consequently would work slower.
As well I appreciate your huge work with tracing it (5th link in google search provides the answer what is it).
If you really care what is, your work would be pretty simple. Factory reset your phone, start each built in ROM app and check the folder after. Then, install your apps one by one, starting each of it and each time after closure checking the folder. Easy.
Click to expand...
Click to collapse
What exactly did you use as a search term on Google?
I know most apps create folders that are legible (com.android.thisgameproducer). Buth with this given specific folder's structure, I don't know what it could be.
For what it's worth, I have been trying to find an answer to this for some months. But only now I made a topic about it. I did my research, which turned out nothing... :/
Formhault said:
. I did my research, which turned out nothing... :/
Click to expand...
Click to collapse
Have you:
wiped your phone, and then used titanium backup for freezing each app, restoring it, and verifying which one creates it? did you repeated the same for each installed by you app? Well, if this folder/file is NOT created by one application (or installed, or embedded into the ROM), then only one explanation is that your phone is used by E.T at night while he "phone home" and this is his encrypted message.:cyclops:
about extension/filetype:does the file have header?
spamtrash said:
Have you:
wiped your phone, and then used titanium backup for freezing each app, restoring it, and verifying which one creates it? did you repeated the same for each installed by you app? Well, if this folder/file is NOT created by one application (or installed, or embedded into the ROM), then only one explanation is that your phone is used by E.T at night while he "phone home" and this is his encrypted message.:cyclops:
about extension/filetype:does the file have header?
Click to expand...
Click to collapse
You know where that .sp folder comes from? Perhaps you were able to find something on Google that I didn't all this time...
I don't know what that header is / should be...
I know I could wipe all and start over again and check each app... But that's too time consuming... Hence I am asking here.
Formhault said:
You know where that .sp folder comes from? Perhaps you were able to find something on Google that I didn't all this time...
I don't know what that header is / should be...
I know I could wipe all and start over again and check each app... But that's too time consuming... Hence I am asking here.
Click to expand...
Click to collapse
1. No idea which particular app makes the cache file, but it is clear that it is cach for one app you have installed, or one you have embedded in ROM.
2. Header is the two first bytes of file in the notepad viewer: for example, PK is characteristic for zip files and by changing the extension you could see what's inside.
3. No one who does not have your ROM AND your specific set of apps installed would be able to provide the answer, therefore without doing your homework, it is unlikely that you'd have information you want.
spamtrash said:
1. No idea which particular app makes the cache file, but it is clear that it is cach for one app you have installed, or one you have embedded in ROM.
2. Header is the two first bytes of file in the notepad viewer: for example, PK is characteristic for zip files and by changing the extension you could see what's inside.
3. No one who does not have your ROM AND your specific set of apps installed would be able to provide the answer, therefore without doing your homework, it is unlikely that you'd have information you want.
Click to expand...
Click to collapse
Well, I don't really know what homework I should do here, as the folder structure is weird (come on, just numbers? ) and the file has no obvious meaning whatsoever. I'm usually a tech guy, but when all I see is numbers, I'm really not that wise... :silly:
Since I know for a fact that I don't have any rogue apps installed, guess I should leave it be and carry on.
But anyway, just for the heck of it, I opened the file in Notepad. Here's the first line (as seen in Notepad, lol).
Code:
ÿØÿà JFIF ÿÛ „
(1#%(:3=<[email protected]\[email protected]_bghg>Mqypdx
I'm sorry, but this is way out of my league. :/
Mod Edit
Thread closed at the request of the [OP]
malybru
Forum Moderator
I'm trying to find a way to move an app from /data/app to /system/priv-app correctly. I'm on Oreo 8.1.0 with January 5, 2018 security patches. I'm rooted with Magisk v16.0.
I've tried using ES File Explorer to move it manually and apply correct permissions. I've tried using Lucky Patcher and Titanium Backup Pro to move it. With the manual move and Lucky Patcher, the app disappears (icon/shortcut is shaded out and doesn't work). With Titanium Backup, it starts the processing and sits with "Processing" forever.
Does anyone know of a way to move the app to system correctly?
What app are you trying to do it for? The most efficient way that I've found is to...
1. Install the app normally.
2. Find the app within /data/app/ and copy the folder to your internal storage
3. Uninstall the app
4. Copy and paste the folder either into /system/app/ or /system/priv-app/
5. Reboot and see if it works
---------- Post added at 05:32 PM ---------- Previous post was at 05:32 PM ----------
What app are you trying to do it for? The most efficient way that I've found is to...
1. Install the app normally.
2. Find the app within /data/app/ and copy the folder to your internal storage
3. Uninstall the app
4. Copy and paste the folder either into /system/app/ or /system/priv-app/
5. Reboot and see if it works
Edit: It would seem that XDA is lagging for me. Excuse the double post, lol.
jvnat said:
I'm trying to find a way to move an app from /data/app to /system/priv-app correctly. I'm on Oreo 8.1.0 with January 5, 2018 security patches. I'm rooted with Magisk v16.0.
I've tried using ES File Explorer to move it manually and apply correct permissions. I've tried using Lucky Patcher and Titanium Backup Pro to move it. With the manual move and Lucky Patcher, the app disappears (icon/shortcut is shaded out and doesn't work). With Titanium Backup, it starts the processing and sits with "Processing" forever.
Does anyone know of a way to move the app to system correctly?
Click to expand...
Click to collapse
If you mount system in TWRP, you can use file explorer in advance setting to move any file anywhere. No need to set any permissions. Just reboot. Been doing that for while now. No problems at all.
I use root explorer,install app normal .got to data/app.copy to system/privapp.then go back to data/app delete the app,then reboot.
Thanks for all the suggestions. I'll give those methods a go.
I am trying to install an app in /system/priv-app and the app is not showing up in Settings -> Apps even with "Show system" selected.
This is on Google HTC Nexus 9 (flounder) Android 7.1.1 Security patch level October 5, 2017. I used TWRP to remount the root filesytem rw and move the app. I am trying to install com.incorporateapp.fakegps_route-1.
I installed the app from the Google Play store and copied it from
/data/app/com.incorporateapp.fakegps_route-1
to
/system/priv-app/com.incorporateapp.fakegps_route-1
The directory and all files and subdirectories are owner and group root.root. The permissions on the directory and files and subdirectories look correct. The com.incorporateapp.fakegps_route-1 directory is 755.
The directory and files are look to be correctly placed on the file system under /system/app-priv. I've checked multiple times. The app does not show up in System -> Apps even if "Show system" is selected. I understand that Android is supposed to find the new app in priv-app on boot and install it. That does not seem to be happening. Any other suggestions? Are there log files on boot I can check for error messages? Any help is appreciated.
TIA.
I have the same issue. When I move the fakegps app from data/app to system/priv-app then I have no icon to select the application from the home screen.
even after a reboot.
anybody knows how to get back the fakegps icon to be able to start the application?
If you guys are using Magisk root, I've found a module called App Systemizer which through a simple command line interface is able to convert apps you pick and choose from a list of installed ones on your phone to convert into system apps. Then when updates occur I use titanium backup's "integrate system dalvik into app" feature (it hangs so you have to force close it but it does the job) reboot and it's done.
The raw copy/paste way which has been described here has messed up my phone once or twice, and gave me a message on boot that "My phone has been corrupted or something along those lines and to contact the manufacturer".
TaZeR369 said:
If you guys are using Magisk root, I've found a module called App Systemizer which through a simple command line interface is able to convert apps you pick and choose from a list of installed ones on your phone to convert into system apps. Then when updates occur I use titanium backup's "integrate system dalvik into app" feature (it hangs so you have to force close it but it does the job) reboot and it's done.
The raw copy/paste way which has been described here has messed up my phone once or twice, and gave me a message on boot that "My phone has been corrupted or something along those lines and to contact the manufacturer".
Click to expand...
Click to collapse
App systemizer just grants the app the status "system app"(likely through linking and granting permissions). It in no way moves it to the system partition.
Ive come to the same realization after running into some questionable free space on my /system Hehe. I copy the APK using TWRP now seems to do the trick.
TaZeR369 said:
Ive come to the same realization after running into some questionable free space on my /system Hehe. I copy the APK using TWRP now seems to do the trick.
Click to expand...
Click to collapse
what version of android can you get, I'm not getting on android 10 can you help me?
Above method didn't worked for me. Below worked perfectly and is safe:
1. Install the app as usual.
2. Copy the app folder from /data/app to internal storage
3. Uninstall the app and reboot to recovery
4. Copy the app folder from internal storage to /system/priv-app folder (If you don't see system folder then you need to mount "system" partition in recovery first)
5. Give permissions to app folder (for all 9 checkboxes), reboot. Enjoy
Anyone else unable to see the folder with the app they moved after a reboot? I want to de-systemize, but I can't now.
I took the folder for the app I want to systemize and moved it from data/app to system/priv-app. Then rebooted. The app is now systemized (can't uninstall it, only disable) But the folder no longer exists under PRIV-APP.
I've done this many times with other apps and I've never seen this problem. Is it because I moved the entire folder and didn't rename it?
After reboot the folder can no longer be found under system/priv-app OR data/app. The app is still installed as a system app. Where is the folder with the app?
Running Android 9. Pixel 3.
I have come across a very strange phenomena on Galaxy M12. When I install an app as user it exists in /data/app forder in a weird way. The folders in /data/app are like ~~h8DR1aXXIZfV_DXfqwYf3g== (see attachment) and in these folders there is another folder with the app package name. On regular devices I hvae seen app package folder in /data/app itself.
When I copy the app package folder from /data/app/~~h8DR1aXXIZfV_DXfqwYf3g== to /system/app it does not work. I can see the app folder after reboot or even reset but app in not installed on the system. I have confirmed by running the activity using 'am' and tried listing with 'pm'. I have also given same permissions as other app folders in /system/app. I have also tried /system/app~~h8DR1aXXIZfV_DXfqwYf3g==.
Edit: As it turns out when I am copying to /system/app the base.apk is not copied properly. I have tried it multiple time, the system is mounted. Whatever I do it is either 0 kb or 100 kb exactl and the file is ~6mb. Still strange behaviour.
Hi
I removed an app from my phone
I connected my phone to my computer and checked if there are any left over files, and yes there are
I am trying to remove the app folder in Phone->Android->Data
It gives me this error: "cache_blablabla cannot be removed: the storage location is write protected. Remove the protection and try again"
Could I somehow get administrator permission so I can remove it?
denniserino said:
Hi
I removed an app from my phone
I connected my phone to my computer and checked if there are any left over files, and yes there are
I am trying to remove the app folder in Phone->Android->Data
It gives me this error: "cache_blablabla cannot be removed: the storage location is write protected. Remove the protection and try again"
Could I somehow get administrator permission so I can remove it?
Click to expand...
Click to collapse
Any time you add or remove apps(especially apps in the system partition), you can boot the device into stock recovery mode and select the "wipe cache partition" option, then reboot. This is necessary because left over cached data from apps that are no longer there can cause conflicts with your device functioning properly.
When the device reboots, it will rebuild the cache as it needs and everything will work like it is supposed to.
This will wipe all cached data on your device, this does not remove your personal files or anything else important, it is not the same as factory reset, it only wipes the "live" data that the app has stored/loaded in the background while the device is on. Similar to clearing your RAM space on PC, it doesn't wipe the user data or any other data from your harddrive, it just dumps what is in your RAM.
One other thing, the Android/data folder is a necessary folder, that is where it stores app data for ALL of the apps that you installed. If you look inside that folder, you will see other folders, each of these other folders is a folder for each individual app that the phone is storing data for.
What you are actually probably looking for is how to remove that data that was associated to the app that you removed. That can be deleted using your phones file manager. Just open your file manager on your android device, select your internal storage. There you will see the Android folder, open it, then you will see all the folders for the individual apps. Find the folder there that is associated to the app that you removed. When you find it you can delete it from within your file manager app.
You don't need a PC, ADB or any other apps or fancy special tricks to delete folders that are stored within the Android/data folder.
Sent from my SM-S767VL using Tapatalk
Droidriven said:
Any time you add or remove apps(especially apps in the system partition), you can boot the device into stock recovery mode and select the "wipe cache partition" option, then reboot. This is necessary because left over cached data from apps that are no longer there can cause conflicts with your device functioning properly.
When the device reboots, it will rebuild the cache as it needs and everything will work like it is supposed to.
This will wipe all cached data on your device, this does not remove your personal files or anything else important, it is not the same as factory reset, it only wipes the "live" data that the app has stored/loaded in the background while the device is on. Similar to clearing your RAM space on PC, it doesn't wipe the user data or any other data from your harddrive, it just dumps what is in your RAM.
One other thing, the Android/data folder is a necessary folder, that is where it stores app data for ALL of the apps that you installed. If you look inside that folder, you will see other folders, each of these other folders is a folder for each individual app that the phone is storing data for.
What you are actually probably looking for is how to remove that data that was associated to the app that you removed. That can be deleted using your phones file manager. Just open your file manager on your android device, select your internal storage. There you will see the Android folder, open it, then you will see all the folders for the individual apps. Find the folder there that is associated to the app that you removed. When you find it you can delete it from within your file manager app.
You don't need a PC, ADB or any other apps or fancy special tricks to delete folders that are stored within the Android/data folder.
Sent from my SM-S767VL using Tapatalk
Click to expand...
Click to collapse
Wow, thank you a lot!
Can I do that without rooting my phone?
And I am doing it because there's an app that gives away something free, you can use it max. 5 times and then you have to purchase. So I thought it'd be a good idea to remove everything associated to that app what might makes it possible to give me the free stuff again, haha
Do you know if it's even possible by removing those files? And if it isn't, do you maybe know where I should be looking at?
denniserino said:
Wow, thank you a lot!
Can I do that without rooting my phone?
And I am doing it because there's an app that gives away something free, you can use it max. 5 times and then you have to purchase. So I thought it'd be a good idea to remove everything associated to that app what might makes it possible to give me the free stuff again, haha
Do you know if it's even possible by removing those files? And if it isn't, do you maybe know where I should be looking at?
Click to expand...
Click to collapse
It is pointless for you to even try, the information that keeps track of how many times you've done it is probably stored online somewhere in some server for the developers/owners of the app.
Sent from my SM-S767VL using Tapatalk