zsh: permission denied: ./gradlew

zsh:-permission-denied:./gradlew

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!

Total
0
Shares
Leave a Reply

Your email address will not be published. Required fields are marked *

Previous Post
accelerate-your-product-design-process

Accelerate Your Product Design Process

Next Post
improve-tensorflow-model-load-time-by-~70%-using-hdf5-instead-of-savedmodel

Improve TensorFlow model load time by ~70% using HDF5 instead of SavedModel

Related Posts
must-know-css-code.

Must know CSS code.

display:flex; 2.justify-content:center; 3.align-items:center; 4.background-image:url(./whatever-image-you-have); 5.background-repeat:no-repeat; 6.font-weight:bold; O.K You are ready to code!
Read More