Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Recently , I got a release version apk of some 3rd party application. I installed it using adb

adb install <path to apk>

But when I run it , I get the error message

java.io.FileNotFoundException: /mnt/sdcard/<package name>/logging.properties (Permission denied)

So what happens to the permissions?

Why was I not asked about the permissions?

Were they granted to the application implicitly?

I am guessing the application should have asked me about it but it did not. How can I run this application? I am using an emulator to test, by the way.

Thanks

share|improve this question

1 Answer

up vote 2 down vote accepted

If you install using adb install permission are granted implicitly. This is a developer tool after all. The 'permission denied' message looks like a bug: either the app is missing the 'READ/WRITE_EXTERNAL_STORAGE' permission or it can't find the file and is giving you a wrong message.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.