我在啓動我的應用程序時遇到問題。 我一直在谷歌Play服務,在我的應用程序,在我的gradle這個它說:Android Studio - Google Play服務錯誤
compile 'com.google.android.gms:play-services-ads:8.4.0'
compile 'com.google.android.gms:play-services:8.4.0'
但現在,我不知道爲什麼,Android的工作室拋出一個錯誤說:
Error:FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task':app:prepareComGoogleAndroidGmsPlayServices840Library'.
> Could not expand ZIP 'C:\Users\Roman\...\sdk\extras\google\m2repository\com\google\android\gms\play-services\8.4.0\play-services-8.4.0.aar'.
* Exception is:
org.gradle.api.tasks.TaskExecutionException: Execution failed for task':app:prepareComGoogleAndroidGmsPlayServices840Library'.
...
Caused by: org.gradle.api.GradleException: Could not expand ZIP 'C:\Users\Roman\...\sdk\extras\google\m2repository\com\google\android\gms\play-services\8.4.0\play-services-8.4.0.aar'.
...
Caused by: java.util.zip.ZipException: archive is not a ZIP archive
似乎是嘗試解壓縮.aar ...我如何解決這個問題?
在此先感謝
你也應該注意到,有一個在其播放服務的廣告和播放服務是沒有意義的,因爲這意味着每一個做一個包括廣告。僅包括您需要的特定播放服務。這減少了apk大小和方法數量。 [docs](https://developers.google.com/android/guides/setup#add_google_play_services_to_your_project) – headsvk