Ich weiß, dass meine Frage oft gestellt wurde und ich die meisten Antworten befolgt habe, aber keine davon hat mir geholfen. Das ist also mein Problem, wenn ich mein Projekt synchronisiere, schlägt es immer fehl. So sieht die Gradle-Konsole aus:
Ausführen von Aufgaben: [: app: generateDebugSources ,: app: generateDebugAndroidTestSources ,: app: mockableAndroidJar ,: app: prepareDebugUnitTestDependencies]
Die Konfiguration bei Bedarf ist eine Inkubationsfunktion. Die inkrementelle Java-Kompilierung ist eine Inkubationsfunktion. : app: preBuild UP-TO-DATE: App: preDebugBuild UP-TO-DATE: App: checkDebugManifest: App: preReleaseBuild UP-TO-DATE: App: prepareComAndroidSupportAnimatedVectorDrawable2420Library UP-TO-DATE: App: prepareComAcompat 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: App: prepareComAndroidSupportSupportCoreUtils2420Library UP- TO-DATE: App: prepareComAndroidSupportSupportFragment2420Library AKTUELL: App:
Was ist schief gelaufen: java.lang.NullPointerException (keine Fehlermeldung)
Versuchen Sie: Führen Sie die Option --stacktrace aus, um den Stack-Trace abzurufen. Führen Sie die Option --info oder --debug aus, um mehr Protokollausgabe zu erhalten.
BAU FEHLGESCHLAGEN
Gesamtzeit: 7,518 Sekunden
UND das sind meine Abhängigkeiten
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'
compile 'com.google.firebase:firebase-database:9.0.2'
compile 'com.firebase:firebase-client-android:2.4.0'
compile 'com.google.firebase:firebase-core:9.4.0'
}
apply plugin: 'com.google.gms.google-services'
Wie kann das Problem behoben werden?