A3IOU
A3IOU

Reputation: 249

Android Studio - How to fix Internal error when trying to read zip file

I'm a beginner in android studio, I use android studio

More information

When I run project app from Android Studio

I got the following message in the console.

Internal error when trying to read zip file 'C:\Users\Administrator.gradle\caches\transforms-1\files-1.1\appcompat-v7-28.0.0.aar\5a46c076ff7d88cc2aa1f3c86b046c42\jars\classes.jar'.

enter image description here

Upvotes: 5

Views: 7572

Answers (1)

A3IOU
A3IOU

Reputation: 249

Go to C:\Users\Administrator\AndroidStudioProjects\"ํYour Project Folder"

  • Find gradle.properties

  • in gradle.properties

  • Change org.gradle.jvmargs=-Xmx1536m to

  • org.gradle.jvmargs=-Xmx1536m -Duser.country=US -Duser.language=en

  • Save

Upvotes: 5

Related Questions