Project directory '~~~' is not part of the build defined by settings file '~~~'. If this is an unrelated build, it must have its own settings file.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
FAILURE: Build failed with an exception.
* What went wrong:
Gradle could not start your build.
> Could not initialize native services.
> Could not extract native JNI library.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
이런 에러가 발생...
이것저것 찾아보다가
환경변수를 GRADLE_USER_HOME 으로 해야 잡힌다고 해서 다시 확인해보니
GRADLE_HOME로 해두었었던....
GRADLE_USER_HOME 으로 수정 후
다시 해보니 동일한 에러가 나옴...
자세히 읽어보니 빌드 파일이 이미 있다고 해서
빌드 파일 백업해두고 다시 해보니
빌드 성공!!!!
또 이것저것 에러 확인해보다가
gradle init 하고
1: Groovy
2: Kotlin
이 둘중 선택을 2로 했었는데 1로 수정함!
gradle home 말고도
프로젝트명 -> gradle -> gradle-wrapper.properties 에 들어가 보면
이런 식으로 gradle 버전이 명시되어 있으니 이것과
File -> Settings... 에 들어가서 있는 Gradle user home과 버전 일치시켜주고,
위에 있는 Gradle JVM 버전이 파일에 세팅되어 있는 것과 동일한지도 확인해 주면 잘 돌아가는 것으로 보입니다.