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:
- open this in windows C:\Users\user3\ .gradle
- edit or create a gradle.properties file and open it with text editor
- 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
- invalidate cache and restart android studio
Note: change memory values as per your system configuration
Post a Comment for "Gradle.properties. Unused Property"