Added expert-review-tips.md and known-issues.md

This commit is contained in:
Luca Warmenhoven
2024-05-07 13:48:20 +02:00
parent f1d4e3b78e
commit 0cdb66e72f
2 changed files with 28 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
## Android Studio gradle could not sync with project (MacOS)
A solution to this issue is by removing the cache files in the gradle folder.
This can be done by executing the following command:
```bash
sudo rm -rf ~/.gradle/caches/
```
If the issue presists, one can remove the existing gradle executables in the
following path:
> `/Users/.../.gradle/wrapper/dists/`
If the issue still remains, one can try removing the gradle files in the project
and try to sync the project again. This can be done by removing the gradle files in
the project source directory and then syncing the project again.

View File

@@ -0,0 +1,9 @@
## Expert review #1
### Document as you go
Documenteer alle problemen die voorkomen bij het project en noteer de
oplossingen voor deze problemen. Dit kan bijvoorbeeld d.m.v. een command die
cache files verwijderd, of op welke manier je een project fixt. Dit kan toekomstige
problemen voorkomen.