Problems in Android repository Flutter TensorFlow-lite by Bintray 502

I can confirm this is working fix.Already upvoted your answer. This is tflite build gradle plugin that i modified for my tensorflow-lite project group ‘sq.flutter.tflite’ version ‘1.0-SNAPSHOT’ buildscript { repositories { google() mavenCentral() } dependencies { classpath ‘com.android.tools.build:gradle:3.1.2’ } } rootProject.allprojects { repositories { google() mavenCentral() } } apply plugin: ‘com.android.library’ android { compileSdkVersion 30 … Read more

Could not GET ‘play-services-location/maven-metadata.xml’. Received status code 502 from server: Bad Gateway

The problem is that a plugin (location in this case) didn’t specify a fixed version of an Android library. So in order to find which versions are available, Gradle must go to the repository to check. In this case, that repository is Bintray, which has been down for days and returning HTTP 502 Bad Request. … Read more