Tek56
Tek56
Same here: `FAILURE: Build failed with an exception. * What went wrong: Could not determine the dependencies of task ':app:processDebugResources'.` `> Could not resolve all task dependencies for configuration ':app:debugRuntimeClasspath'....
android/build.gradle: ```` buildscript { ext.kotlin_version = '1.5.10' // Must use 1.3.0 or higher. ext { compileSdkVersion = 30 // or higher targetSdkVersion = 30 // or higher appCompatVersion = "1.0.2"...
Done, sorry @christocracy
Yep thanks for that, I took the example of the build gradle. I still have the issue ```` Could not GET 'https://google.bintray.com/exoplayer/com/transistorsoft/tsbackgroundfetch/maven-metadata.xml'. Received status code 502 from server: Bad Gateway...
This is my updated android/build.gradle ```` buildscript { ext.kotlin_version = '1.5.31' ext { compileSdkVersion = 30 targetSdkVersion = 30 supportLibVersion = "1.3.1" } repositories { google() mavenCentral() } dependencies {...
Still the same bug. Like you said, my app is attempting to find `maven-metadata.xml` from `google.bintray.com`. instead of searching for the one within the plugin. I tried: - Updating Flutter...
Thanks a lot @asmodeoux. @G-Luz, in app/build.gradle, add the following line: `implementation(group: 'com.transistorsoft', name:'tsbackgroundfetch', version: '0.5.0')` in build.gradle, add the following lines BEFORE google() and mavenCentral(): ` maven { url...