お世話になっております。
既存アプリのソースコードを修正しているのですが、
コマンドプロンプトにていつも通りreact-native run-androidを実行したところ
突然下記のようなエラーが発生するようになってしまいました。
開発環境
Windows10
node v12.16.1
npm 6.13.4
react native 4.5.0
発生している問題・エラーメッセージ
androidディレクトリでgradlew installDebug --debugを実行
12:02:48.822 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 12:02:48.822 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] FAILURE: Build failed with an exception. 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * What went wrong: 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] Execution failed for task ':app:compileDebugJavaWithJavac'. 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] > Compilation failed; see the compiler error output for details. 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * Try: 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] Run with --stacktrace option to get the stack trace. Run with --scan to get full insights. 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] 12:02:48.823 [ERROR] [org.gradle.internal.buildevents.BuildExceptionReporter] * Get more help at https://help.gradle.org 12:02:48.824 [WARN] [org.gradle.internal.featurelifecycle.LoggingDeprecatedFeatureHandler] 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.5/userguide/command_line_interface.html#sec:command_line_warnings 12:02:48.824 [ERROR] [org.gradle.internal.buildevents.BuildResultLogger] 12:02:48.824 [ERROR] [org.gradle.internal.buildevents.BuildResultLogger] BUILD FAILED in 24s
追記:androidディレクトリでgradlew installDebug --stacktraceを実行
> Task :app:compileDebugJavaWithJavac FAILED C:\Users\user\Documents\sample_app\SourceCode\sampleApp\android\app\src\main\java\com\sample\sample\app\MainActivity.java:24: エラー: class、interfaceまたはenumがありません . ^ エラー1個 FAILURE: Build failed with an exception. * What went wrong: Execution failed for task ':app:compileDebugJavaWithJavac'. > Compilation failed; see the compiler error output for details.
追記:MainActivity.javaのソースコード
こちらも開発入ってから一度も触っていません。
java
1package com.sample.sample.app; 2 3import android.os.Bundle; 4import com.facebook.react.ReactActivity; 5import org.devio.rn.splashscreen.SplashScreen; 6 7public class MainActivity extends ReactActivity { 8 9 @Override 10 protected void onCreate(Bundle savedInstanceState) { 11 SplashScreen.show(this); 12 super.onCreate(savedInstanceState); 13 } 14 15 /** 16 * Returns the name of the main component registered from JavaScript. This is used to schedule 17 * rendering of the component. 18 */ 19 @Override 20 protected String getMainComponentName() { 21 return "sampleApp"; 22 } 23} 24.
試したこと
Execution failed for task ':app:compileDebugJavaWithJavac'.で落ちていると思いエラーの詳細を調べたのですが
AndroidStudioで確認する方法は出てくるのにコマンドラインでのやり方になかなか辿りつけず、困っています。
昨日から設定やライブラリなどビルドに影響しそうなところは特に触っていません。
アプリ開発が初めての為至らない点が多々あるかと思いますが、何かご存知の方がいましたらご教授いただきたいです。
よろしくお願いいたします。
回答1件
あなたの回答
tips
プレビュー