Skip to content Skip to sidebar Skip to footer

Gradle.properties. Unused Property

I have a gradle.properties file in the project of Android Studio. I put a few lines inside the file_: org.gradle.daemon=true org.gradle.parallel=true If I put the mouse over those

Solution 1:

  1. open this in windows C:\Users\user3\ .gradle
  2. edit or create a gradle.properties file and open it with text editor
  3. copy and paste these there

org.gradle.daemon=true org.gradle.jvmargs=-Xmx6144m -XX:MaxPermSize=512m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 org.gradle.parallel=true org.gradle.configureondemand=true

  1. invalidate cache and restart android studio

Note: change memory values as per your system configuration

Post a Comment for "Gradle.properties. Unused Property"