Getting a problem in connecting firebase with android studio - firebase

FAILURE: Build failed with an exception.
* Where:
Build file 'C:\Users\Public\s******n\android\build.gradle' line: 37
* What went wrong:
A problem occurred evaluating root project 'android'.
> Could not find method implementation() for arguments [com.google.android.gms:play-services:12.0.1] on object of type org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
* Try:
> Run with --stacktrace option to get the stack trace.
> Run with --info or --debug option to get more log output.
> Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 6s
Exception: Gradle task assembleDebug failed with exit code 1
I don't know how to connect it, can somebody help me ?

Related

FAILURE: Build failed with an exceptionfor react native

FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':react-native-maps:packageDebugAssets'.
A failure occurred while executing com.android.build.gradle.internal.tasks.Workers$RunnableWrapperWorkAction
java.nio.file.AccessDeniedException: C:\Users\Al\Desktop\YourTravel\node_modules\react-native-maps\lib\android\src\main\assets\ula.kml -> C:\Users\Al\Desktop\YourTravel\node_modules\react-native-maps\lib\android\build\intermediates\library_assets\debug\out\ula.kml
Try:
Run with --stacktrace option to get the stack trace.
Run with --info or --debug option to get more log output.
Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 8s
at makeError (C:\Users\Al\Desktop\YourTravel\node_modules\execa\index.js:174:9)
at C:\Users\Al\Desktop\YourTravel\node_modules\execa\index.js:278:16
at processTicksAndRejections (node:internal/process/task_queues:96:5)
at async runOnAllDevices (C:\Users\Al\Desktop\YourTravel\node_modules\#react-native-community\cli-platform-android\build\commands\runAndroid\runOnAllDevices.js:109:5)
at async Command.handleAction (C:\Users\Al\Desktop\YourTravel\node_modules\#react-native-community\cli\build\index.js:192:9)
I have removed node-modules and used npm start to rebuild it

':firebase_core:compileDebugJavaWithJavac'

I cannot build the app after the upgrade flutter. Getting the following error "Execution failed for task ':firebase_core:compileDebugJavaWithJavac'.
FAILURE: Build failed with an exception.
What went wrong:
Execution failed for task ':firebase_core:compileDebugJavaWithJavac'.
Failed to calculate the value of task ':firebase_core:compileDebugJavaWithJavac' property 'options.generatedSourceOutputDirectory'.
Querying the mapped value of map(java.io.File property(org.gradle.api.file.Directory, property(org.gradle.api.file.Directory, fixed(class org.gradle.api.internal.file.DefaultFilePropertyFactory$FixedDirectory, C:\Users\ahmed azami\Desktop\social_app\build\firebase_core\generated\ap_generated_sources\debug\out))) org.gradle.api.internal.file.DefaultFilePropertyFactory$ToFileTransformer#a5453a7) before task ':firebase_core:compileDebugJavaWithJavac' has completed is not supported
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 5m 47s
Exception: Gradle task assembleDebug failed with exit code 1strong text
I think it is due to androidX. Just append these 2 lines at the end of gradle.properties
android.enableJetifier=true
android.useAndroidX=true

flutter Exception: Gradle task assembleDebug failed with exit code 1

// I am having this issues when trying to retrieve the address from firebase
FAILURE: Build failed with an exception.
Where:
Script 'D:\src\flutter\packages\flutter_tools\gradle\flutter.gradle' line: 904
What went wrong:
Execution failed for task ':app:compileFlutterBuildDebug'.
Process 'command 'D:\src\flutter\bin\flutter.bat'' finished with non-zero exit value 1
Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
Get more help at https://help.gradle.org
BUILD FAILED in 11s
Exception: Gradle task assembleDebug failed with exit code 1
updating the dart tools and the flutter tools worked for me

On running the emulator getting this error: Cause: invalid type code: 1D

Recently i installed android studio, and when i run the app for the first time it ran without any error but now, when i run it, it has given the error i.e.
Cause: invalid type code: 1D
and
Executing tasks: [:app:assembleDebug] in project /home/dell/AndroidStudioProjects/disha
FAILURE: Build failed with an exception.
* What went wrong:
Could not initialize class org.codehaus.groovy.runtime.InvokerHelper
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
BUILD FAILED in 95ms
Please help.
To resolve this error please make the changes below:
Install Java SDK version: 14 or above.
JDK Download link: https://www.oracle.com/java/technologies/javase-jdk14-downloads.html
And in gradle-wrapper.properties please use grade version 6.3 or above.

Execution fails for task "runExampleClientRPCJava"

I'm following the CorDapp example tutorial from the main website and am running into problems when trying to run the example RPC client via the command line on Linux
When running the gradle task ./gradlew runExampleClientRPCJava , I get the following errors.
> Task :java-source:runExampleClientRPCJava
I 13:47:55 1 RPCClient.logElapsedTime - Startup took 7722 msec
Exception in thread "main" ActiveMQNotConnectedException[errorType=NOT_CONNECTED message=AMQ119007: Cannot connect to server(s). Tried with all available servers.]
at org.apache.activemq.artemis.core.client.impl.ServerLocatorImpl.createSessionFactory(ServerLocatorImpl.java:787)
at net.corda.client.rpc.internal.RPCClientProxyHandler.start(RPCClientProxyHandler.kt:191)
at net.corda.client.rpc.internal.RPCClient$start$1.invoke(RPCClient.kt:123)
at net.corda.client.rpc.internal.RPCClient$start$1.invoke(RPCClient.kt:86)
at net.corda.core.internal.InternalUtils.logElapsedTime(InternalUtils.kt:191)
at net.corda.core.internal.InternalUtils.logElapsedTime(InternalUtils.kt:183)
at net.corda.client.rpc.internal.RPCClient.start(RPCClient.kt:109)
at net.corda.client.rpc.CordaRPCClient.start(CordaRPCClient.kt:135)
at net.corda.client.rpc.CordaRPCClient.start(CordaRPCClient.kt:120)
at com.example.client.ExampleClientRPC.main(ExampleClientRPC.java:38)
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':java-source:runExampleClientRPCJava'.
> Process 'command '/usr/lib/jvm/java-8-oracle/bin/java'' finished with non-zero exit value 1
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
* Get more help at https://help.gradle.org
I can see that it can't connect to any of the servers. Does anyone know why this is and how to solve it? Has anyone run into the same problem?
The error message indicates that the client is not able to connect to the node in question. This is most likely because the node it is trying to connect to has failed to start.
Try restarting the node and trying to connect again.

Resources