Hello! I’m looking for some tips or tricks to enha...
# android
a
Hello! I’m looking for some tips or tricks to enhance the performance and speed of Android Studio. It’s been running a bit slow for me lately, and I’d appreciate any advice on optimizing it for a smoother experience.
not kotlin but kotlin colored 2
m
is it running slow in general or the build time is very long?
a
the build time / sync is very long
m
Copy code
# Enables the build cache.
org.gradle.caching=true
# Enables parallel execution for Gradle tasks.
org.gradle.parallel=true
did you try adding these to your
gradle.properties
a
nop, i will try that 👍 thanks
m
You are welcome
1