Hi, I'm having trouble upgrading from Gradle 7 to ...
# community-support
a
Hi, I'm having trouble upgrading from Gradle 7 to gradle 8. this is also involving an upgrade to the android gradle plugin from 7 to 8. Normal gradle 7 builds build normally, but when i try to build with gradle 8 it comes up with a bunch of these errors
Copy code
> Failed to transform places-1.1.0.aar (com.google.android.libraries.places:places:1.1.0) to match attributes {artifactType=android-symbol-with-package-name, org.gradle.category=library, org.gradle.libraryelements=jar, org.gradle.status=release, org.gradle.usage=java-api}.
      > Could not download places-1.1.0.aar (com.google.android.libraries.places:places:1.1.0)
         > Could not get resource '<https://dl.google.com/dl/android/maven2/com/google/android/libraries/places/places/1.1.0/places-1.1.0.aar>'.
            > Could not HEAD '<https://dl.google.com/dl/android/maven2/com/google/android/libraries/places/places/1.1.0/places-1.1.0.aar>'.
               > Got socket exception during request. It might be caused by SSL misconfiguration
                  > Connection reset
   > Failed to transform play-services-clearcut-16.0.0.aar (com.google.android.gms:play-services-clearcut:16.0.0) to match attributes {artifactType=android-symbol-with-package-name, org.gradle.status=release}.
      > Could not download play-services-clearcut-16.0.0.aar (com.google.android.gms:play-services-clearcut:16.0.0)
         > Could not get resource '<https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-clearcut/16.0.0/play-services-clearcut-16.0.0.aar>'.
            > Could not HEAD '<https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-clearcut/16.0.0/play-services-clearcut-16.0.0.aar>'.
               > dl.google.com:443 failed to respond
   > Failed to transform play-services-phenotype-16.0.0.aar (com.google.android.gms:play-services-phenotype:16.0.0) to match attributes {artifactType=android-symbol-with-package-name, org.gradle.status=release}.
      > Could not download play-services-phenotype-16.0.0.aar (com.google.android.gms:play-services-phenotype:16.0.0)
         > Could not get resource '<https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-phenotype/16.0.0/play-services-phenotype-16.0.0.aar>'.
            > Could not HEAD '<https://dl.google.com/dl/android/maven2/com/google/android/gms/play-services-phenotype/16.0.0/play-services-phenotype-16.0.0.aar>'.
               > dl.google.com:443 failed to respond
   > Failed to transform volley-1.1.1.aar (com.android.volley:volley:1.1.1) to match attributes {artifactType=android-symbol-with-package-name, org.gradle.category=library, org.gradle.libraryelements=jar, org.gradle.status=release, org.gradle.usage=java-api}.
      > Could not download volley-1.1.1.aar (com.android.volley:volley:1.1.1)
         > Could not get resource '<https://jcenter.bintray.com/com/android/volley/volley/1.1.1/volley-1.1.1.aar>'.
            > Could not HEAD '<https://jcenter.bintray.com/com/android/volley/volley/1.1.1/volley-1.1.1.aar>'.
               > jcenter.bintray.com:443 failed to respond
etc.. this only happens on our build machines, which are configured to use a proxy (cntlm). the proxy configuration (in
.gradle/gradle.properties
) has remained unchanged in the upgrade. any ideas?