You need to upgrade your PC though but there are few things you can do to make it faster
1. Increase the memory size of Android Studio:
Open the file located at /bin/studio.vmoptions and Change the content from
-Xms128m
-Xmx800m
to
-Xms256m
-Xmx1024m
Xms specifies the initial memory allocation pool. Your JVM will be started with Xms amount of memory and will be able to use a maximum of Xmx amount of memory.
Save the studio.vmoptions file and restart Android Studio.
2. Improve Gradle performance:
Create a file named gradle.properties in
/home/<username>/.gradle/ (Linux)
/Users/<username>/.gradle/ (Mac)
C:\Users\<username>\.gradle (Windows)
and add the line:
org.gradle.daemon=true
This helps a lot, with org.gradle.daemon
set to true Gradle
reuses computations from previous builds and cache information about project structure, files, tasks etc. in memory so it won’t have to start up the entire Gradle
application every time.
Source