我知道我的这个问题已经被问过很多次了,而且我的确遵循了大多数的答案,但是没有一个对我有帮助。所以这就是我的问题,每当我同步我的项目,它总是失败。下面是评级控制台的外观:
执行任务: [ : app: generateDebugSource, 应用程序: generateDebugAndroidTestSource, : app: pareDebugUnitTestDependency ]
按需配置是一个酝酿中的特性 编译是一个孵化特性 : app: preDebugBuild Up-TO-DATE: app: checkDebugManifest : app: preReleaseBuild Up-TO-DATE : app: prepareComAndroidSupportAnimatedVectorDrawable2420Library 最新版本: app: prepareComAndroidSupportAppcompatV72420Library 最新版本: 应用程序: prepareComAndroidSupportDesign2420Library 最新版本 应用程序: prepareComAndroidSupportMediouterV72300Library Up-TO-DATE 应用程序: prepareComAndroid 支持回收视图 V72420Library Up-TO-DATE : app: prepareComAndroidSupportSupportCompat2420Library UP-TO-DATE : app: prepareComAndroidSupportSupportCoreUi2420Library UP-TO-DATE : app: prepareComAndroidSupportSupportCoreUtils2420Library Up-TO-DATE : app: prepareComAndroidSupportSupportFragment2420Library UP-TO-DATE : app: prepareComAndroidSupportSupportMediaCompat2420Library UP-TO-DATE : app: prepareComAndroidSupportSupportV42420Library Up-TO-DATE 应用程序: prepareComAndroidSupportSupportVectorDrawable2420Library 最新版本: app: prepareComGoogleAndroidGmsPlayServices940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesAds940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesAdsLite940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesAnalytics940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesAnalyticsImp940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesAppindexing940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesAppinvite940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesAuth940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesAuthBase940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesBase940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesBasement940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesCast940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesCastFramework940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesClearcut940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesContextmanager 940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesDrive940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesFitness940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesGames940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesGass940Library 最新版本: app: prepareComGoogleAndroidGmsPlayServicesGcm940Library 最新的 应用程序: prepareComGoogleAndroidGmsPlayServicesIdentity940Library 失败: 生成异常失败。
错误: java.lang. NullPointerException (no error message)
尝试: 使用—— 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'
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'
如何解决这个问题?