Question How Can I copy/move from Android/Data - Asus ROG Phone 6 / 6 Pro

Hello dear friends.
I want to copy/move or modify files in Android/Data [Without Root Acces] and tried few different File managers like "FV File Explorer, zArchiver, Solid Explorer and MT Manager" but didn't work, I want to Enable/Achieve 90FPS for PUBGM since they didn't added Snapdragon 8+ Gen 1 to support 90FPS.

X-plore File Manager - Apps on Google Play
X-plore is dual-pane file manager with tree view, LAN/Root/Clouds and more.
play.google.com
Test this

Related

[APP][v2009-09-17] Cab utility - RENAME cab content/files to normal target names

UPDATE 2009-09-18
[APP] "ai Cab Explorer" -is extended version of this utility.you can find it
at http://forum.xda-developers.com/showthread.php?p=4564266#post4564266
END UPDATE 2009-09-18
"ai :: Mobile CAB content file rename utility"
is a small program that will help you extract Mobile Cab files to your PC, AND fix temp file names to original target names.
Main purpose is to combine different "manila customizations" from existing cab files that you can find on this forum.
For creating Cab files for instalation you can use HDWall ([APP][Jul31.v0.25b] High Resolution Wallpaper & Slider Editor [all tabs] Cab Creator ) http://forum.xda-developers.com/showthread.php?t=503511
which is capable of doing it simply and without "instalation", "cracks", "licences"...
Note: it is expected that CAB file content is already extracted.
For example you can use WinRar to extract CAB content to some directory.
But after that instead of real file names what you'll get are some enrypted names.
This utility will help you get pure file names on your PC.
Example:
if you use WinRar to extract "DJCedric Desigreen_TabIcons.cab" you will get some 24 files (0CABA635.001 ...)
Actually this file will be "installed" to mobile device under real / target name
"5acc5861_manila".
3 functions of this utility:
a) analyze / preview fileneme conversion (parsing _setup.xml)
b) RENAME TO TARGET NAMES
c) rename back to "Cab" names (revert the RENAME TO TARGET NAMES)
Thanks for this app! Saves trawling through the setup.xml
Just what the doctor prescribed
Thanks for this missing piece of the puzzle.
Only thing is that with the second cab I tried I got an error message that said it can not rename to a fie that already exist.
This is what happened:
Folder '\Windows\Start Menu\Programs\Office Mobile' 0000ICON.001 -> icon.lnk
Folder '\Windows\Start Menu\Settings' 0000ICON.002 -> icon.lnk
Folder '\Windows\Start Menu\Programs\Games' 0000ICON.003 -> icon.lnk
Fortunately in your great program the files are visible and I was able to find the file I wanted (Folder '%CE2%' PHCANO~1.029 -> phcanOverbmp.dll) and rename it manually
BTW (just to share): This also a nice cab maker.
http://forum.xda-developers.com/showthread.php?t=400221
I like it better than the "High Resolution Wallpaper & Slider Editor [all tabs] Cab Creator"
Thanks for your reply.
In midtime I created a new application (based on this one).
It is [APP] "ai Cab Explorer"
You can find it at
http://forum.xda-developers.com/showthread.php?p=4564266#post4564266
However, if anybody needs correction for this one "Cab utility", please do let me know.
"FIX" is acually an option to extract to folders instead of "flat folder".
Both apps actually use the same library for that option so I will update this one if someone will request the change (and at the same time don't like "ai Cab Explorer"
cheers

[PC-APP] RecModFolder - fast module to file conversion

01/04/2010 update - program can read list of modules from text file.
download link: http://www.4shared.com/file/255038195/c2b5de9b/RecModFolder_04.html
mirror: http://narod.ru/disk/19297102000/RecModFolder_04.zip.html
how to use
1. create text file RecModFolder.txt,
2. write list of modules to this file, for example:
SYS\MediaOS\wmpocx.dll
SYS\OS\dw.exe
SYS\OS\dwui.dll
SYS\OS\DwXfer.dll
3. pass RecModFolder.txt as a parameter:
RecModFolder.exe RecModFolder.txt
that's it.
and, of course, you can convert all modules in folder like this
RecModFolder.exe SYS\AdobeFlash
RecModFolder.exe SYS\AdobeFlashCodecs
there are sample RecModFolder.txt and cmd file that I use with OSBuilder
cmd file is executed from the root of my kitchen, program is in the tools\RecMod subfolder
====================================================
old post:
I developed small tool which helps me to update my kitchen with new OS build.
My device has wm6.1 kernel and I get tired with "too many modules" problem.
I know I can use RecMod to convert modules to files, but it's so slow and inconvenient:
find folder with module,
drop it on recmod.exe,
get new file out of this folder,
delete folder,
move file back,
find, drop, get, delete, move...
find, drop, get, delete, move...
GRRR!!!! =)
My tool will do all these steps for me.
I just select parameters:
1. Folder - folder with modules, for example SYS\21872,
2. Mask (optional) - any mask that is valid in windows is acceptable,
(common masks are *.dll, *.cpl, *.exe, *.mui), no mask means "*".
3. Count (optional) - how many modules to convert, no count means "convert all".
[new in v0.3] If Count is 0, program will only display all modules matching the mask,
and do not change your files.
=======================================
Example 1:
>RecModFolder.exe c:\xda\v1\SYS\21054
means - RecMod all modules in c:\xda\v1\SYS\21054 recursive
=======================================
Example 2:
>RecModFolder.exe c:\xda\v1\SYS\21054 *.exe
means - RecMod all exe modules in c:\xda\v1\SYS\21054 recursive
=======================================
Example 3:
>RecModFolder.exe c:\xda\v1\SYS\21054 *.dll 10
means - RecMod first 10 dll modules in c:\xda\v1\SYS\21054 recursive
=======================================
Algorithm
Code:
read parameters from command line
find all modules in given folder (recursive) using given mask
for each module folder
{
call RecMod
create temporary unique file name (GUID for safety reason)
move new file to parent folder and assign it temporary name
delete module folder (with all files)
rename new file, give it real module name
if (count >= requested count)
{
stop
}
}
=======================================
Installation
make sure you can run RecMod from console, add its folder to PATH or drop RecModFolder.exe to the same folder.
That's it.
=======================================
Tips
You can create shortcut to RecModFolder and drop folders on it from explorer or Total Commander. RecModFolder will convert all modules in that folder to files.
Backup your files. This tool doesn't ask any questions,
it just informs you in case of error and stops immediately.
Save log file and check it for errors.
This is console application - you can use it in bat files.
You can save output of this program to text file - add >fileName.txt to your command line.
example:
RecModFolder.exe c:\xda\v1\SYS\21054 *.dll 10 >log.txt
this command will call RecMod first 10 dll modules in c:\xda\v1\SYS\21054 recursive
and save its output to log.txt.
Do not open folders you want to delete (replace with files) in explorer (or Total Commander, FAR, etc.) while this program works.
very nice, but there is already a similar app which does it from right click menu..
see here -> recmod by OndraSter
you probably have more options on the whole process, but the other tool might be more convenient.. anyways i will try
serfer222, you know that you may be responsible for whole lots of nab made VERY bad rom releases now, lol?
hheh, thanks for that tool anyway.
nosedive said:
very nice, but there is already a similar app which does it from right click menu..
see here -> recmod by OndraSter
you probably have more options on the whole process, but the other tool might be more convenient.. anyways i will try
Click to expand...
Click to collapse
I can explain what is the main difference:
If I choose one module folder, for example
Code:
SYS\21055\SHARED\COMMON\BROWSING\browser.dll\
and select osRecmod "Recmod this folder" it will work.
but if I select parent folder
Code:
SYS\21055\SHARED\COMMON\BROWSING\
osRecmod will just delete this folder and create empty file BROWSING
in the SYS\21055\SHARED\COMMON\
So, you see, it doesn't work for me.
I want to convert all modules inside folder
Code:
SYS\21055\SHARED\COMMON\BROWSING\
in one step. I drag this folder on my tool and all modules are converted to files. That's what I want =)
pupakota said:
serfer222, you know that you may be responsible for whole lots of nab made VERY bad rom releases now, lol?
Click to expand...
Click to collapse
You know, there are a lot of such rom developers already here.
This tool will just save their time and maybe they will find out whole new world outside computer and then will quit rom development... =)
Thank you serfer222 for this application, which complements my kitchen.
By
New version - v0.3.
new option is added - if you set Count to 0 program will just display list of matching modules.
Example: I want to see a list of *.mui module folders that can be converted to files.
Command: >RecModFolder.exe d:\mega2\SYS\21874\ *.mui 0
Output:
Code:
d:\mega2\SYS\21874\SHARED\0409\AdobeFlash_LANG_0409\flashresource.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Autoupdate_Lang_0409\AutoUpdateRes_wpc.exe.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\commctrl.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\commdlg.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\coredll.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\coreres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\crypt32.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\fatutil.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\filesys.exe.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\gwes.exe.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\ieceext.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\jscript.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\miscres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\netmui.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\notify.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\OutlookLiveUpdaterResources.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\outres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\quartz.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\shellres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\shellresapps.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\syncres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\tapres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\tshres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\unimodem.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\waveapi.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Base_Lang_0409\wsp.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Browsing_Lang_0409\browsres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Browsing_Lang_0409\mlang.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Browsing_Lang_0409\shdoclc.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Browsing_Lang_0409\shlwapi.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Browsing_Lang_0409\urlmon.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Browsing_Lang_0409\wininet.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\CHome_Lang_0409\cmhomeres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Entertainment_Lang_0409\bbcbres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Fwupdate_Lang_0409\MdsRes_wpc.exe.0409.mui
d:\mega2\SYS\21874\SHARED\0409\IPSECVPN_Lang_0409\ipsecvpnres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\Skybox_Lang_0409\MyPhoneConsole.exe.0409.mui
d:\mega2\SYS\21874\SHARED\0409\WMWidgets_LANG_0409\riahostres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0409\WMWidgets_LANG_0409\wmwidgetinstallerres.dll.0409.mui
d:\mega2\SYS\21874\SHARED\0419\AdobeFlash_LANG_0419\flashresource.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Autoupdate_Lang_0419\AutoUpdateRes_wpc.exe.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\commctrl.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\commdlg.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\coredll.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\coreres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\crypt32.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\fatutil.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\filesys.exe.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\gwes.exe.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\ieceext.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\jscript.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\miscres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\netmui.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\notify.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\OutlookLiveUpdaterResources.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\outres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\quartz.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\riresdll.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\shellres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\shellresapps.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\syncres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\tapres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\tshres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\unimodem.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\waveapi.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Base_Lang_0419\wsp.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\browsres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\mlang.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\msscript.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\shdoclc.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\shlwapi.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\urlmon.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Browsing_Lang_0419\wininet.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\CHome_Lang_0419\cmhomeres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Entertainment_Lang_0419\bbcbres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Fwupdate_Lang_0419\MdsRes_wpc.exe.0419.mui
d:\mega2\SYS\21874\SHARED\0419\IPSECVPN_Lang_0419\ipsecvpnres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\MediaOS_Lang_0419\wmploc.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\RemoteDesktopMobile_Lang_0419\wpctsc.exe.0419.mui
d:\mega2\SYS\21874\SHARED\0419\Skybox_Lang_0419\MyPhoneConsole.exe.0419.mui
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMContactsResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMDeckResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSContainerResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSMailResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSMeResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSMessengerResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSSearchBarResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSSplashResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMHSSyncResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMMailResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMMessengerResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMServiceResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMSharedResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMSpacesResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WindowsLive_Lang_0419\WLMSyncResources.dll.0419.MUI
d:\mega2\SYS\21874\SHARED\0419\WMWidgets_LANG_0419\riahostres.dll.0419.mui
d:\mega2\SYS\21874\SHARED\0419\WMWidgets_LANG_0419\wmwidgetinstallerres.dll.0419.mui
97 modules found.
download it from the first post.
have fun =)
keep on
good job man
I have an idea for next update.
Now I'm using 21874 with my wm6.1 kernel and just simple update it to 21876 is a headache. This tool helps me to convert modules fast, but I still must choose what should be converted. I'm lazyyyy. I did it for 21874 and want to REUSE my old work.
Idea is:
1. run application and choose good existing build AS TEMPLATE.
2. select new build folder and drink a cup of coffee.
3. my app will do the job - take old working build as template and prepare new build exactly the same way.
What do you think? Is there a program that already implement this feature or
I need to create it? (lazy question)
=)
When I start doing recmod the recmodefolder.exe shows this message "Do you have RecMod.exe in PATH?" and then stops.
What happens?
program is updated, list-mode added,
first post is updated
hi, friends, it seems an excerllent apps, but how can i download it? when i visit that link, it seems a Russian web, i even don't know one letter!
can you upload it rapishare ?
www.4shared.com link in the first post
useful App ,, Thanks
when selecting or specifying 1 module folder, it doesen't work for me.
It shows "RecMod 0 modules completed"
It works only using multiple (eg: *.mui).
Maybe the first prob. will be replaced by osrecmod, & ur tool for multiple files ,, LoL
------------
ANY idea of converting back file to module?
-Yasser-

Astraware Boardgames/Sudoku for AT&T Tilt 2 (Stock)

I am not sure how, but lost all my Program Files settings. Can anyone please post me the original files as zip file for the following games
Astraware Boardgames (\Program Files\ASTRAWARE\BOARDGAMES folder contents)
Astraware Sudoku (\Program Files\ASTRAWARE\SUDOKU folder contents)
Thanks

[new Tutorial ] How to Copy FIles between Android to Windows Phone 10 or vice-versa

Android 4.4 Running in a emulator in windows phone 10512 build
so i made shortcuts to easily transfer data between Android File system to Windows Phone or vice versa
android 4.4 running in windows phone had following restrictions
Restrictions:
1)Bluetooth is not working in android apps
2)WiFi ,cellular data works only net using ,no hotspot or internet sharing
3)downloading from browsers failed ,so no direct downloads
4)if you copy files from WP to android, Sometimes reboot required in order to identified by apps
5)maximum android app in taskview will be limited to 7 or 8 ,it will increase depend upon app state and running
5)if try installing Gpps and inter-op unlock sometimes it will leads to slow phone charging for 1% it takes 10 minutes and Apps become slow in performances
all images are in Attachment read it and follow images for better understand
Remember that :-
**** in order to use shortcuts you need to deploy at-least one apk then only shortcuts will open (do remember after Reset) ****
**********This Doesn't Require any root and gapp installations,even with out these it work better**********
But if you root you can deploy unlimited Apks ,you can download vcFan s Root tool download link and Tutorialhere
{
"lightbox_close": "Close",
"lightbox_next": "Next",
"lightbox_previous": "Previous",
"lightbox_error": "The requested content cannot be loaded. Please try again later.",
"lightbox_start_slideshow": "Start slideshow",
"lightbox_stop_slideshow": "Stop slideshow",
"lightbox_full_screen": "Full screen",
"lightbox_thumbnails": "Thumbnails",
"lightbox_download": "Download",
"lightbox_share": "Share",
"lightbox_zoom": "Zoom",
"lightbox_new_window": "New window",
"lightbox_toggle_sidebar": "Toggle sidebar"
}
If you want to install multiple apks from a folder from command-line ,place adb.exe,wconnect.exe ...etc (tools link)+all your apks in C:\Apps ,
open Admin command prompt,in command prompt type "cd/"
it will come to C:\ then type "cd APPS" ,it will become C:\Apps then
type "" wconnect.exe usb "" ,
connectphone through usb pair with code
use following command
Code:
for %f in (C:\APPS\*.apk) do adb install "%f"
you can download all three shortcuts here : All shortcuts Extract it open folder copy all three shortcuts to phone memory root
*********** For copy anything from android to wp and vice versa ,place two(first two Attachments) shortcuts at phone root
and
place wp shortcut at Android Filesystem for faster copying *************
These shortcuts doesn't open destination in ""copying path"" ,you need to click on just before folder(or available folder names ) or back button(depends on need of copying) on top bar of explorer to continue copying path .
All Android Folders resides in C:\Data\Users\DefApps\APPDATA\Local\Aow :- AOW-shortcut
All Andoid app Data/Downloads/File Sytem are at C:\Data\Users\DefApps\APPDATA\Local\Aow\mnt\shell\emulated\0 :--Android-FileSystem-shortcut
All windows phone File system at C:\Data\Users\public :-- WP_System-Root-shortcut
Both zip files contains a folder there you can find shortcuts, extract them in PC/Mobile using unzip software ,place them in file explorer start page
these shortcuts works from memory card too.these not work when you copy and moving through ,you need to click on before folder on top of explorer to continue
1)How to copy Android App Downloaded files(media files) to our wp file systems :-
Go to Android-file system
Images saved in android apps will be saved to DCIM folder but downloaded files saving depend upon app. for example
I just copy my face book saved images to our picture (wp) folder,
***Copying android to wp easier because in file explorer always had phone and sdcard icons on left adjacent bar ***
just directly click on Phone/SDcard icons on left vertical bar in File Explorer for faster pasting files see images below
--------------------------------------------------------------------------------------------------------------------------------------------------------------------------
if you select copy from android folders just directly click on Phone/SDcard icons on left vertical bar in File Explorer for faster pasting files see images below
If you downloaded through other apps /download managers
search using magnifier button in our file explorer
Like for images *.jpg
For videos *.mp4 ..etc
You can Game files patches too,
Copying Files From Windows Phone to Android :-
place files that you want copy files to phone Documents folder use Start-copy_WPDocuments.zip to start copy
Here little bit difficulty because you need to go to main OS(c ) folder and there you need start copying
First Download this shortcut Download extract-WP-system_Root.zip and extract shortcut file to Phone memory root.
open the the shortcut ,it will go to pictures folder It will goes to pictures folder then on top click on public then normal file system will appear
For example if you want to move photos from cameraroll
-----------------------------------------------------------------------------------------------------------------------------------------------------------------------
Copy files then click on pictures folder on top of explorer, then Again click on Users(important step)
Then click on DefApps
Then click \APPDATA like wise \Local\Aow\mnt\shell\emulated\0
Here if you are saving images save to DCIM folder further we use to share in different apps
click tick mark to copy
Like this you can move files between Windows Phone to Android or vice versa
check below images for better understand
APP Details :-
if you want to play videos in Android app ÄLLplayer working fine and sometimes require reboot to load media files in player ,if you download you-tube videos it search for subtitles so rename it to avoid subtitles searching Linksee Allplayer in action on wp in below images
Facebook 43 and messengers working super fast
Download links :-
ES File Explorer 4.01 beta : link
AllPlayer:- link
if you are using Droid4x deploy controller apk here and use as remote for pc gaming if you are connected on same network : link
Facebook link
messanger link
office suite 8 pro + fonts working like charm,this is the only app that run in our android subsystem
office suite 8 pro : link
office suite 8 fonts : link
papyrus : link
saavn mod: link
Share this to all windows phone users ,Hit Thanks if I really helped
Thanks !! This is very useful !!
How to access windows files from android, for ex: open windows image folder from es explorer?
I would like to replace the folder DCIM with a shortcut that points to windows photo folder so i can use some android photo apps without moving files
jasonyu007 said:
Thanks !! This is very useful !!
Click to expand...
Click to collapse
flotron said:
How to access windows files from android, for ex: open windows image folder from es explorer?
I would like to replace the folder DCIM with a shortcut that points to windows photo folder so i can use some android photo apps without moving files
Click to expand...
Click to collapse
actually Total Aow is not a public folder so we can't access through any shortcuts.when you first open phone memory all are under public/ folder ,so all apps can access it.but we can open Aow folder because all android apps need to access through file explorer to save their app data.only solution is step by step copy-path by clicking just before folder on the top of file explorer while copying wp <==> android FS

How can I change camera shutter sound with root?

I overwrited shutter.ogg in system/media/ui but no change then i realized that i must change it in SamsungCamera.apk in priv-app directory. I opened it with apk editor and placed the file in res/raw directory and then repacked it then copied to priv-app directory but this time gave me error"application not installed" when i try to open camera app.Any solution you should offer?
Or how can I change system apps in priv-app directory
SM-A705FN cihazımdan Tapatalk kullanılarak gönderildi
I used this app with root to debloat:
https://labs.xda-developers.com/store/app/de.realvoxel.appmanager
I then added these to cscfeature.xml for my region:
<CscFeature_Framework_SupportDataModeSwitchGlobalAction>TRUE</CscFeature_Framework_SupportDataModeSwitchGlobalAction>
<CscFeature_SmartManager_DisableAntiMalware>TRUE</CscFeature_SmartManager_DisableAntiMalware>
<CscFeature_VoiceCall_ConfigRecording>RecordingAllowed</CscFeature_VoiceCall_ConfigRecording>
<CscFeature_Common_DisablePhoneNumberFormatting>TRUE</CscFeature_Common_DisablePhoneNumberFormatting>
<CscFeature_Camera_ShutterSoundMenu>TRUE</CscFeature_Camera_ShutterSoundMenu>
The last entry is what you're looking for specifically.
I uninstalled the device security apk. Disabling anti-malware
in the csc file removes an otherwise dead link from Device care.
You'll need to use omc decoder to decrypt your cscfeature.xml found here:
https://forum.xda-developers.com/android/software/decode-encode-omc-files-omc-decoder-t3791471/amp/
These are old tricks but still work
I used fx file manager to then overwrite the system file.
There's a Majisk module as well to remove camera sounds but i've not tried.
Interestingly, it appears Samsung tried to do the same with their phone connect/disconnect audio files in the UI folder... only to be trumped by their own apk.

Categories

Resources