java.lang.NullPointerException(エラーメッセージなし)
私のこの質問は何度も聞かれ、ほとんどの答えに従いましたが、どれも助けにはなりませんでした。これが私の問題です。プロジェクトを同期するたびに失敗します。Gradleコンソールは次のようになります。 タスクの実行:[:app:generateDebugSources、:app:generateDebugAndroidTestSources、:app:mockableAndroidJar、:app:prepareDebugUnitTestDependencies] オンデマンドの構成は、インキュベーション機能です。インクリメンタルJavaコンパイルはインキュベーション機能です。:app:preBuild UP-TO-DATE:app:preDebugBuild UP-TO-DATE:app:checkDebugManifest:app:preReleaseBuild UP-TO-DATE:app:prepareComAndroidSupportAnimatedVectorDrawable2420Library UP-TO-DATE:app:prepareComAndroidSupportAppcompatV72420Library UP-TO-DATE: app:prepareComAndroidSupportDesign2420Library UP-TO-DATE:app:prepareComAndroidSupportMediarouterV72300Library UP-TO-DATE:app:prepareComAndroidSupportRecyclerviewV72420Library UP-TO-DATE:app:prepareComAndroidSupportSupportCompat2420Library UP-TO-DATE:app:prepareComAndroidSupportSupportCoreUi2420Library UP-TO-DATE TO-DATE:app:prepareComAndroidSupportSupportFragment2420Library UP-TO-DATE:app: 何が問題だったのか:java.lang.NullPointerException(エラーメッセージなし) 試してください:-stacktraceオプションを指定して実行し、スタックトレースを取得します。--infoまたは--debugオプションを指定して実行すると、より多くのログ出力が得られます。 ビルドに失敗しました 合計時間:7.518秒 そしてこれらは私の依存関係です dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', { exclude group: 'com.android.support', module: 'support-annotations' }) compile 'com.android.support:appcompat-v7:24.2.0' compile 'com.android.support:design:24.2.0' compile 'com.google.android.gms:play-services:9.4.0' testCompile 'junit:junit:4.12' compile 'com.google.android.gms:play-services-location:9.4.0' compile 'com.google.android.gms:play-services-appindexing:9.4.0' compile 'com.google.firebase:firebase-messaging:9.2.0' …