The obb folder is hidden in android 5.0. Searched a lot on web and XDA and found out no one has found this problem yet. The obb folder is hidden throughout the system, i have tried to connect it via pc but no use. In pc you can see the obb folder but all the folders within it are empty! I have rooted and used even root explorer. No use. Anyone can help please? :fingers-crossed:
same here
need solution
juve2lia said:
same here
need solution
Click to expand...
Click to collapse
Hey i have found the solution! Just go to es file explorer and search for obb folder and you can see the obb folder and copy and paste filess too! that is the loop hole in the security...! you cant access it normally but when you search it via es you can access it
Sent from my XT1033 using XDA Free mobile app
obb location is at /data/media/obb
vikasb32 said:
obb location is at /data/media/obb
Click to expand...
Click to collapse
Sorry sir.... but its not... its under Android/obb only just hidden from external access but when you try to search it... it is shown..
Sent from my XT1033 using XDA Free mobile app
It only visible at /data/media/obb if you are rooted device
Fixed
Malyaj said:
Sorry sir.... but its not... its under Android/obb only just hidden from external access but when you try to search it... it is shown..
Sent from my XT1033 using XDA Free mobile app
Click to expand...
Click to collapse
Doesnt matter anymore, its fixed in android 5.0.1
bhumik147 said:
Doesnt matter anymore, its fixed in android 5.0.1
Click to expand...
Click to collapse
Yes man... yesterday only i updated to 5.0.1 brazilian ota... its fixed
Sent from my XT1033 using XDA Free mobile app
yaaahhhh
yes it fixed guys. now 1ly flashed 5.0.1. it rockzzz.
Terminal?
If anyone is still stuck on 5.0.0...
if you get the Terminal Emulator, the following instructions will work; supposing you have a folder in download you want to move to obb:
cd /sdcard/Download
Let's say our folder is com.sample.folder
cp -r com.sample.folder /sdcard/Android/obb
If you want to check it
cd /sdcard/Android/obb
ls (or ls -l)
thisUnkn0wn said:
If anyone is still stuck on 5.0.0...
if you get the Terminal Emulator, the following instructions will work; supposing you have a folder in download you want to move to obb:
cd /sdcard/Download
Let's say our folder is com.sample.folder
cp -r com.sample.folder /sdcard/Android/obb
If you want to check it
cd /sdcard/Android/obb
ls (or ls -l)
Click to expand...
Click to collapse
I've tried many ways to do this, but in all of them it seems i don't have the permission to do that (write on this folder) i can't delete what's in the folder, i mean i can, but when i refresh the folder nothing changes.
i can copy archives there but it seems they all turns into 0kb files when i do so, i can't move stuff there.
i'm stuck, and i can only see this folder searching with ES or creating it with root explorer (but then it vanish when i leave the folder)
In the way you said above terminal writes that i don't have permission to do that, and i have a rooted device.
IGNORE
---------- Post added at 10:17 PM ---------- Previous post was at 10:12 PM ----------
marquesini said:
I've tried many ways to do this, but in all of them it seems i don't have the permission to do that (write on this folder) i can't delete what's in the folder, i mean i can, but when i refresh the folder nothing changes.
i can copy archives there but it seems they all turns into 0kb files when i do so, i can't move stuff there.
i'm stuck, and i can only see this folder searching with ES or creating it with root explorer (but then it vanish when i leave the folder)
In the way you said above terminal writes that i don't have permission to do that, and i have a rooted device.
Click to expand...
Click to collapse
Download and install the latest version of TWRP for your phone. Then boot your phone into recovery. From there go into advanced and click terminal the input
chown -R media_rw:media_rw /data/media/
find /data/media/ -type d -exec chmod 775 {} ';'
find /data/media/ -type f -exec chmod 664 {} ';'
That should fix this issue (when you reboot your phone it should be there but be aware that whenever you reboot you have to do this or at least I do)
Hope I Helped
Related
Dear all members,
I have tried many file explorers like Astro & EStrong but there is no way I can copy file to the phone system directory.
I understand that I will need to modify the permission so that I can copy file to the file system but how do I do that?
I really appreciate your kind advice, thanks.
A possible workaround if it is a contact list is that you on your computer could try to import the phone directory to Google Contacts and sync it over to your phone.
Ludolf71 said:
A possible workaround if it is a contact list is that you on your computer could try to import the phone directory to Google Contacts and sync it over to your phone.
Click to expand...
Click to collapse
Brother, thanks for your reply.
I was trying to copy the modified version of the YouTube.apk to the phone directory but I cannot do it so checking anyone know to get around it?
chongbh said:
Dear all members,
I have tried many file explorers like Astro & EStrong but there is no way I can copy file to the phone system directory.
I understand that I will need to modify the permission so that I can copy file to the file system but how do I do that?
I really appreciate your kind advice, thanks.
Click to expand...
Click to collapse
Root explorer
No need to move it manually I guess. Mount your SD-card, transfer the file to your phone and download Apps Installer or similar to install the application. If that don't work, you can move files with adb.
thor2002ro said:
you need adb....
and do this...
Code:
adb shell mount -o remount,rw -t yaffs2 /dev/block/mtdblock2 /system
adb push YouTube.apk /sdcard/YouTube.apk
adb shell dd if=/sdcard/YouTube.apk of=/system/app/YouTube.apk
adb shell rm /sdcard/YouTube.apk
adb shell reboot
Click to expand...
Click to collapse
From the other thread you asked in - forum.xda-developers.com
Ludolf71 said:
No need to move it manually I guess. Mount your SD-card, transfer the file to your phone and download Apps Installer or similar to install the application. If that don't work, you can move files with adb.
Click to expand...
Click to collapse
Hi, I try to find adb in the marketplace but cannot find.
Any kind advice from fellow members, thanks.
chongbh said:
Hi, I try to find adb in the marketplace but cannot find.
Any kind advice from fellow members, thanks.
Click to expand...
Click to collapse
I am saying this again in this thread. Root Explorer
also adb is not a application you can download from market. You have to download the android sdk and set up environmental variables.
Is your dev Rooted???
you will need android SDK and follow the directions given above by XperiaX10iUser
to know more about SDK and to download SDK go here
Ive temporarily rooted my device to push a file to system/app and ive followed the instruction from the widgetpicker app from xda and it keeps telling me 'permisson denied' from typing "c:\android-windows\tools> adb remount
can someone please help me get this file into the system app folder
Symondo said:
Ive temporarily rooted my device to push a file to system/app and ive followed the instruction from the widgetpicker app from xda and it keeps telling me 'permisson denied' from typing "c:\android-windows\tools> adb remount
can someone please help me get this file into the system app folder
Click to expand...
Click to collapse
1.Put the app in the root of your internal sd.
2.Open root explorer and scroll to sdcard and click to open.
3.Scroll to the app and long press,which gives you the options and click copy or move.
4.Click your back button,which will take you back to "Mounted as r/w.
5.Scroll to and click on system and click app and then paste.
6.Press and hold the installed app and change permission to rw-r-r
Hit home and your done.
i dont have root explorer at the moment and would like to try n do this without paying for an additonal app just now.
i dont understand how its so difficult to move a file into a folder
cd /sdcard/somewhere
su
cp file.apk /system/app
exit
Sent from a piece of ginger bread
K900 said:
cd /sdcard/somewhere
su
cp file.apk /system/app
exit
Sent from a piece of ginger bread
Click to expand...
Click to collapse
tried this it states "sd card not found" in terminal emulator.
Ive got it granted super user access and a temporary root. do i need to do with without the temp root?
The other code ive tried which i cant get to work is:
c:\android-sdk-windows\tools>adb remount
c:\android-sdk-windows\tools>adb push AppWidgetPicker.apk /system/app
Alright so here's my problem: After rooting my phone, I started to play around with a couple of camera apps from different ROMs such as MIUI. Me being an idiot though, deleted the stock Blur camera Apk. Using a system dump of the Atrix, 2 I tried to reinstall it, by placing it in system/app. For some reason. It wouldn't install (show up on my app directory). Anybody have any idea as to why this is happening? Any help would be greatly appreciated, because I really need a camera app.that's supports 1080p video. Thanks in advance!!!
farshad525hou said:
Alright so here's my problem: After rooting my phone, I started to play around with a couple of camera apps from different ROMs such as MIUI. Me being an idiot though, deleted the stock Blur camera Apk. Using a system dump of the Atrix, 2 I tried to reinstall it, by placing it in system/app. For some reason. It wouldn't install (show up on my app directory). Anybody have any idea as to why this is happening? Any help would be greatly appreciated, because I really need a camera app.that's supports 1080p video. Thanks in advance!!!
Click to expand...
Click to collapse
Push the sick app via adb. I read somewhere that with apps such as root explorer it doesn't work for some reason. Hope this helps.
Sent from my MB865 using Tapatalk
Yes, always use adb to push system apps. Root Explorer will not work.
Sent from my mAtrix2!!
For some reason i get permission denied whenever i try to push through adb. How do i get around this?
farshad525hou said:
For some reason i get permission denied whenever i try to push through adb. How do i get around this?
Click to expand...
Click to collapse
To copy anything to /system/app, you need root access.
This will be a 2 step process.
1) push the file from your computer to your phone in a directory that the shell has access to, i.e. /data/local for instance.
2) adb shell into the phone and su, remount /system as rw, then cp the file from /data/local/ to /system/bin
That should elimiate the issue with permission denied, with adb push.
jimbridgman said:
To copy anything to /system/app, you need root access, have you rooted the phone?
If you have rooted the phone, this will be a 2 step process.
1) push the file from your computer to your phone in a directory that the shell has access to, i.e. /data/local for instance.
2) adb shell into the phone and su, remount /system as rw, then cp the file from /data/local/ to /system/bin
That should elimiate the issue with permission denied, with adb push.
Click to expand...
Click to collapse
Yes my phone is rooted. How do I remount /system as rw? Then how do i cp the file? Thanks for your help!
I figured out how to push the file with adb, but the app still does not show up. Any other ideas?
farshad525hou said:
Yes my phone is rooted. How do I remount /system as rw? Then how do i cp the file? Thanks for your help!
Click to expand...
Click to collapse
Ok, run EVERYTHING between Code:, and End code from the command line. Just make sure you are in the directory you saved your backup camera.apk to, from your windows command prompt, before you run the commands below.
Code:
adb push BlurCamera.apk /data/local
adb shell
su
mount -o remount, rw /system
cd /data/local
cp BlurCamera.apk /system/app
chown root /system/app/BlurCamera.apk
chgrp root /system/app/BlurCamera.apk
chmod 644 /system/app/BlurCamera.apk
mount -o remount, ro /system
exit
exit
End code
That should hopefully fix it.
jimbridgman said:
Ok, run EVERYTHING between Code:, and End code from the command line. Just make sure you are in the directory you saved your backup camera.apk to, from your windows command prompt, before you run the commands below.
Code:
adb push BlurCamera.apk /data/local
adb shell
su
mount -o remount, rw /system
cd /data/local
cp BlurCamera.apk /system/app
chown root /system/app/BlurCamera.apk
chgrp root /system/app/BlurCamera.apk
chmod 644 /system/app/BlurCamera.apk
mount -o remount, ro /system
exit
exit
End code
That should hopefully fix it.
Click to expand...
Click to collapse
Sadly this didn't work either. I don't know what I'm doing wrong. Btw, thanks for your help so far!
Quick question....is the blurcamera.odex file still in the system/app. If you have deleted it also you will have to replace it as well.
JRW 28 said:
Quick question....is the blurcamera.odex file still in the system/app. If you have deleted it also you will have to replace it as well.
Click to expand...
Click to collapse
I could only find a deodexed system dump
Here ya go, zip has both camera.apk and odex. Try using file explorer again and make sure it is r/w . Hope it helps
http://db.tt/v0FQKpKr
JRW 28 said:
Here ya go, zip has both camera.apk and odex. Try using file explorer again and make sure it is r/w . Hope it helps
http://db.tt/v0FQKpKr
Click to expand...
Click to collapse
Thanks for the files! But once again sadly the file doesn't appear under my app drawer. I tried using adb and root explorer, with no luck. Is there anything I'm missing? Btw, JRW are those files from the atrix 2?
There both straight off of my phone...that's weird cause I have removed both of them trying out various cameras and never had a problem reinstalling them?
Are you rebooting afterwards?
JRW 28 said:
There both straight off of my phone...that's weird cause I have removed both of them trying out various cameras and never had a problem reinstalling them?
Are you rebooting afterwards?
Click to expand...
Click to collapse
Yeah I am. Can you walk me through what you do when you re install the apps? I am really confused. Is there anything that might be interfering?
Go into file explorer and make sure your system folder is r/w along with both the blurcamera.apk and blurcamera.odex.... then drop both of them into system/app and reboot. Wouldn't think anything else would be interfering?
JRW 28 said:
Go into file explorer and make sure your system folder is r/w along with both the blurcamera.apk and blurcamera.odex.... then drop both of them into system/app and reboot. Wouldn't think anything else would be interfering?
Click to expand...
Click to collapse
How do I make sure that BlurCamera.apk and BlurCamera.odex are both r/w?
Im not sure if it really matters on them but long pressing on either of them in file explorer should bring up the permissions and you can change from there. Do the same on your system folder just to double check that the permissions are correct
JRW 28 said:
Im not sure if it really matters on them but long pressing on either of them in file explorer should bring up the permissions and you can change from there. Do the same on your system folder just to double check that the permissions are correct
Click to expand...
Click to collapse
Yeah still no luck... no idea whats wrong
Try pushing them with ADB .....usually that will take care of it
InstigatorX said:
Originally Posted by Chouie
Im in v3...i donto have Google talk either
U can just use Samsung's social hub for gchat
Sent from my SGH-I727R
Click to expand...
Click to collapse
Attached Google Talk files that worked for me (from TouchWiz 1.0.2 ROM). Put the lib file into /system/lib and the apk into /system/app. Change perms to 744.
Click to expand...
Click to collapse
I am trying to follow these instructions however I can not find the /system/lib and /system/app folders. The Google Talk stock app vanished when I flashed TCP's rom on the phone, so I am trying to reinstall it this way, since it is not on the market.
Where are these files usually located? Do I need to format my files differently or something?
/system/app
/system/lib
ANYTHING that is not /mnt/sdcard (/sdcard) or /ext-sd requires ROOT access and an app that will look at ROOT
ES File explorer or root explorer
you WILL NOT see these folders by just plugging into your computer, nor will you see it with basic file managers
Pirateghost said:
/system/app
/system/lib
ANYTHING that is not /mnt/sdcard (/sdcard) or /ext-sd requires ROOT access and an app that will look at ROOT
ES File explorer or root explorer
you WILL NOT see these folders by just plugging into your computer, nor will you see it with basic file managers
Click to expand...
Click to collapse
Thanks for the help,
Ok i downloaded ASTRO file manager, but when i try to paste into the app folder it gives me an error message that I have a read only file system...
Make sure you have r/o where it says r/o or r/w. this way you can paste it.
LazyMike said:
Thanks for the help,
Ok i downloaded ASTRO file manager, but when i try to paste into the app folder it gives me an error message that I have a read only file system...
Click to expand...
Click to collapse
Pirateghost said:
/system/app
/system/lib
ANYTHING that is not /mnt/sdcard (/sdcard) or /ext-sd requires ROOT access and an app that will look at ROOT
ES File explorer or root explorer
you WILL NOT see these folders by just plugging into your computer, nor will you see it with basic file managers
Click to expand...
Click to collapse
I know I'm VERY! late with this answer, but I have to correct you. With zArchiver (file-explorer and zip/7-zip app) you can access androids system folders. On a S III mini I can copy the ringtones/notification-sounds or the start sound( on the micro-SD-card for example). It is possible to copy other files too, but that didn't make any sense for me. btw: phone is not rooted.
P.S. Also worked on a non-rooted Huawei Y 625 @ Android 4.4.2 . Of course I can not copy files INTO the system folder(s) but read-acces is definitely possible without root permissions.
Greetz HiddenAssassin2306
Access to /data is forbidden in Android unless you have root access.
/system is read only, and limited.
My quote from above did say you wouldn't see any of these from a computer. And the OP was trying to place files in /system, which is read only.
Is there some reason you felt the need to bring up a 3 year old thread to say I'm wrong, when in this thread, regarding the original post, I am 100% correct?
I tried titanium pro but it doesn't delete it. the apk is still there after a reboot.
Thanks
(For a System app) You can try using a Root Browser and go to system > app folder and delete that particular apk from there... or you can download NoBloat free from Play store and get rid of the app using that...
(For a normal app) Just do it the old fashioned way.. using your Settings app
Sent from my Calculator using XDA Premium
Nothing deletes system apps in Kitkat
Sami Kabir said:
(For a System app) You can try using a Root Browser and go to system > app folder and delete that particular apk from there... or you can download NoBloat free from Play store and get rid of the app using that...
(For a normal app) Just do it the old fashioned way.. using your Settings app
Sent from my Calculator using XDA Premium
Click to expand...
Click to collapse
I have tried all possible ways, Titanium, Root browser, Nobloat, Deblaot, ADB . Nothing deletes ANY system app in Kitkat
ajaib said:
I have tried all possible ways, Titanium, Root browser, Nobloat, Deblaot, ADB . Nothing deletes ANY system app in Kitkat
Click to expand...
Click to collapse
I'm also annoyed by this. The system partition is read-only, sam as in JB. But in Kitkat, I could not delete any file from /system.
So, one way to do it is to remount /system as read-write, and then delete the file. I used adb to do this.
Code:
adb shell
su -
mount -o rw,remount /system
cd /system/app
rm xxx.apk
Remember though that some of the system app could be in /system/priv-app.
KK Read only system Partition
gylee said:
I'm also annoyed by this. The system partition is read-only, sam as in JB. But in Kitkat, I could not delete any file from /system.
So, one way to do it is to remount /system as read-write, and then delete the file. I used adb to do this.
Code:
adb shell
su -
mount -o rw,remount /system
cd /system/app
rm xxx.apk
Remember though that some of the system app could be in /system/priv-app.
Click to expand...
Click to collapse
Will try. Need to flash KK again to check it out.Thanks anyways
---------- Post added at 12:17 PM ---------- Previous post was at 12:11 PM ----------
Why no Senior Member or Developer is commenting on this huge problem. I don't see any reason to flash custom ROMs if it doesn't provide full control to me.