마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

안드로이드 Build failed with an exception에러 도와주세요ㅠㅠ

0 추천
> Configure project :common
Warning: Please apply google-services plugin at the bottom of the build file.

FAILURE: Build failed with an exception.

* What went wrong:
A problem occurred configuring project ':common-client-jvm'.
> Failed to notify project evaluation listener.
   > org.gradle.api.tasks.TaskInputs.dir(Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputs;
   > org.gradle.api.tasks.TaskInputs.dir(Ljava/lang/Object;)Lorg/gradle/api/tasks/TaskInputs;

* 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

Deprecated Gradle features were used in this build, making it incompatible with Gradle 6.0.
Use '--warning-mode all' to show the individual deprecation warnings.
See https://docs.gradle.org/5.1.1/userguide/command_line_interface.html#sec:command_line_warnings

 

 

이클립스에서 작성한 코드 import했는데 빌드가 안되네요ㅠ

혹시 아시는분 있나요???
qeeoj (200 포인트) 님이 2019년 6월 5일 질문

1개의 답변

0 추천

Warning: Please apply google-services plugin at the bottom of the build file.

app/build.gradle 제일 아래에 

apply plugin: 'com.google.gms.google-services'

를 넣어보세요.

쎄미 (162,410 포인트) 님이 2019년 6월 5일 답변
...