Larry Moore

Results 3 comments of Larry Moore

```yaml runOnlyWhenInstalling: false shell: /bin/sh script: | # homebrew uses a non-standard directory on M1 if [[ $(arch) = arm64 ]]; then export PATH="$PATH:$(which brew|sed 's%/brew%%')"; fi xcrun --sdk macosx...

I solved this problem by editing settings.gradle (ApplicationName) and build.gradle (ApplicationName) `settings.gradle`: ```groovy //pluginManagement { // repositories { // google() // mavenCentral() // gradlePluginPortal() // } //} //dependencyResolutionManagement { //...

> I had the same issue. My problem was the macOS permissions were not set in the respective entitlements files to allow network client access for the macOS build. >...