skip to Main Content

Android Studio – warning: [deprecation] <TResult>call(Executor,Callable<TResult>) in Tasks has been deprecated

I'm getting this error while I was running my app (though my app is running fine) : C:UsersdassaDownloadsflutter_windows_2.2.3-stableflutter.pub-cachehostedpub.dartlang.orgfirebase_storage-10.2.11androidsrcmainjavaioflutterpluginsfirebasestorageFlutterFirebaseStorageTask.java:198: warning: [deprecation] <TResult>call(Executor,Callable<TResult>) in Tasks has been deprecated return Tasks.call(FlutterFirebasePlugin.cachedThreadPool, () -> storageTask.cancel()); ^ where TResult is a type-variable: TResult extends Object…

VIEW QUESTION

Android Studio – Gradle: "Configuration cache state could not be cached"

Configuration cache state could not be cached: field 'actions' from type 'org.gradle.api.DefaultTask': error writing value of type 'java.util.ArrayList' > Configuration cache state could not be cached: field 'closure' from type 'org.gradle.api.internal.AbstractTask$ClosureTaskAction': error writing value of type 'com.chaquo.python.PythonPlugin$_createAssetsTasks_closure21$_closure46' > Configuration cache…

VIEW QUESTION

Android Studio – Flutter: Execution failed for task ':location:compileDebugKotlin'

Execution failed for task ':location:compileDebugKotlin'. build:gradle(Module:app) ext.kotlin_version = '1.6.10' repositories { maven { //url 'https://dl.google.com/dl/android/maven2', url 'http://download.flutter.io' } google() mavenCentral() } dependencies { classpath 'com.google.gms:google-services:4.3.10' classpath 'com.android.tools.build:gradle:4.+' classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" classpath 'com.google.firebase:firebase-crashlytics-gradle:2.4.1' //classpath("com.google.android.libraries.mapsplatform.secrets-gradle-plugin:secrets-gradle-plugin:2.0.0") } } allprojects { repositories { maven {…

VIEW QUESTION
Back To Top
Search