From 0cdb66e72fded1e3a63aee198ab31dce631e8db2 Mon Sep 17 00:00:00 2001 From: Luca Warmenhoven Date: Tue, 7 May 2024 13:48:20 +0200 Subject: [PATCH] Added expert-review-tips.md and known-issues.md --- docs/documentation/known-issues.md | 19 +++++++++++++++++++ docs/personalDocs/Luca/expert-review-tips.md | 9 +++++++++ 2 files changed, 28 insertions(+) create mode 100644 docs/documentation/known-issues.md create mode 100644 docs/personalDocs/Luca/expert-review-tips.md diff --git a/docs/documentation/known-issues.md b/docs/documentation/known-issues.md new file mode 100644 index 0000000..6484223 --- /dev/null +++ b/docs/documentation/known-issues.md @@ -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. diff --git a/docs/personalDocs/Luca/expert-review-tips.md b/docs/personalDocs/Luca/expert-review-tips.md new file mode 100644 index 0000000..fb147bc --- /dev/null +++ b/docs/personalDocs/Luca/expert-review-tips.md @@ -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. +