Access date / data folder in DDMS [duplicate]

0

I am not able to access the date / data folder in ddms in Windows. I can see all of the folder plus some as the date / date I can not access. Does anyone have a solution?

    
asked by anonymous 01.07.2016 / 18:00

1 answer

0

It may be some permission problem, you need to have a root device to view this folder. If your device has root , try the following steps:

  • Open the command prompt
  • Navigate to the folder where your adb is located
  • Enter the command adb shell
  • Enter the command su
  • If the su command has a permission error, execute the 6 step if it does not continue to the 7 step.
  • Navigate to your device at: Configurações - > Opções de Desenvolvedor - > Acesso root - > Check the Aplicativos e ADB option. Perform the 4 step again.
  • Press to allow in the dialog that opens on your device
  • Enter the command chmod 777 /data /data/data /data/data/com.application.package /data/data/com.application.package/*
  • Verify that you are already able to access the folder by DDMS
  • Do not forget to change com.application.package for your original package.

    Original answer here:

    Android eclipse DDMS - Can not access data / data / on phone to pull files

        
    01.07.2016 / 18:21