No cached version of com.google.gms:google-service

2020-02-05 11:44发布

Error:No cached version of com.google.gms:google-services:1.4.0-beta3 available for offline mode. Disable Gradle 'offline mode' and sync project

I am facing this issue because I am working in offline mode in android studio. Can some body please tell me where is this cached file stored in my windows and from where I'll get this file so that I can separately download it and paste/keep it, and build my android project.

6条回答
欢心
2楼-- · 2020-02-05 12:09

you can also do this:

Go to `File -> Other Settings -> Default Settings`

And open the

Build,Execution,Deployment

Then open the

Build Tools -> Gradle

Then uncheck Offline work on the right.

Click the OK button.

Then Rebuild the Project.

查看更多
闹够了就滚
3楼-- · 2020-02-05 12:14

Disable offline mode to solve this error.

In Android Studio Go:

File -> Setting -> Build, Execution, Deployment -> Gradle

Then Uncheck Ofline Work, Done.

查看更多
做个烂人
4楼-- · 2020-02-05 12:14

If your Offline Work is Unchecked and If you still get this Error.

Do this:

File => Invalidate Caches/Restart

In my case also I had the same problem. Solved it using this.

查看更多
欢心
5楼-- · 2020-02-05 12:15

Update te Gradle distribution, go to the oficial site https://services.gradle.org/distributions/ find the last, in this moment gradle-5.0-all.zip and download it, unzit this and configure the grandle path in Android studio S2s

查看更多
地球回转人心会变
6楼-- · 2020-02-05 12:21

Disable offline mode

  • Step 1: Goto File -> Settings -> Build, Execution, Deployment -> Gradle

  • Step 2: Uncheck checkbox of Offline Work.

  • Step 3: Click the Apply and Ok button.

  • Then click File -> Sync Project with Gradle Files and Rebuild the Project.

enter image description here

查看更多
【Aperson】
7楼-- · 2020-02-05 12:35

The Offline mode does not allow you to completely work offline. Its actually a GOOD cache mode. Whenever you add new dependencies, You HAVE to gradle sync the project, ATLEAST ONCE. Android studio has to download(then cache) the dependencies for the app to work. Once you sync the gradle files, then you can switch to offline mode, and you can work.

If you must work offline, then i would suggest determining all the dependencies you need in your application. Add them all at once and Gradle sync. Then switch to Offline mode.

UPDATE
If you are working behind a proxy network, then goto File-> Settings -> Under Appearence & Behavior -> Under System Settings -> HTTP Proxy -> Click on Manual proxy configuration, and add the neccessary details. Then goto your gradle.properties file which should contain sometyhing like this :

systemProp.http.proxyPassword=your_password
systemProp.http.proxyHost=host_Ip_address
systemProp.http.proxyUser=your_username
systemProp.http.proxyPort=port_number

Add this to your file, along with the above :

systemProp.https.proxyPassword=your_password
systemProp.https.proxyHost=host_Ip_address
systemProp.https.proxyUser=your_username
systemProp.https.proxyPort=port_number

These details can be found out from your browser's proxy settings.

查看更多
登录 后发表回答