Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've been trying to submit my app to the mac app store and I've been trying to figure out how to solve this issue:

Files Only Readable By The Root User - The installer package includes files that are only readable by the root user. This will prevent verification of the application's code signature when your app is run. Ensure that non-root users can read the files in your app.

I haven't been able to fix this problem for a while and does anyone have a solution?

share|improve this question
Fix the owner with chown(8) or fix the permissions with chmod(1)? – Adam Rosenfield Sep 26 '11 at 15:47

2 Answers

up vote 1 down vote accepted

I found the answer:

I deleted some files that weren't readable by the system, files that showed a white blank icon

share|improve this answer

I had the same problem, but my solution was to run:

cd myApp.app
chmod a+rX *

This fixes the permissions and makes the Application Loader happy.

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.