Today, I ran into a problem while working on my React Native project. When I tried to execute the command ./gradlew signingReport, I received a permission denied error:
zsh: permission denied: ./gradlew
To fix this issue, I changed the file permissions by running the following command:
chmod +rwx ./gradlew
After updating the permissions, the command executed successfully, and I was able to continue with my project.
Please make sure you in android path!
Top comments (0)