I want to easily transfer over all my custom shortcuts and IDE idiosyncrasies that are present in IntelliJ to Android Studio so I can begin my Android app development career without the headache of individually configuring each custom setting. How can I accomplish this?
Asked
Active
Viewed 6,783 times
2 Answers
39
In order to transfer your existing settings from IntelliJ to Android Studio (or vice versa) select File -> Manage IDE Settings -> Export Settings... and select an appropriate path. Then in the other IDE you wish to transfer the settings to, select File -> Manage IDE Settings -> Import Settings and locate the previously exported .jar settings file.

Mehmet K
- 2,805
- 1
- 23
- 35

Quinn McHugh
- 1,577
- 2
- 17
- 23
-
5If I want to use both IDEs, can I symlink Android Studio's settings to IntelliJ settings? So they are always synchronized – CLOVIS Aug 02 '18 at 22:00
-
@CLOVIS did you try to symlink with success? – usernotnull Apr 17 '20 at 08:53
-
1@RJFares Nope. I created a repository on GitLab and added that with https://www.jetbrains.com/help/idea/settings-tools-settings-repository.html do NOT clone locally or you will get a lot of conflicts in your settings. If you give it the GitLab/GitHub/whatever URL directly it works fine. It doesn't save your plugin list, but it does save their settings, so you just have to remember which plugins you have, and all your settings will be synced. – CLOVIS Apr 18 '20 at 11:57
-
@CLOVIS thanks, that what I ended up doing. It actually managed to import from android studio to phpstorm successfully – usernotnull Apr 18 '20 at 14:20
1
You need to export the settings from IntelliJ (by clicking File->Export Settings), and then import them to Android Studio (with File->Import Settings).
The trick is you also need to disable 'IDE settings sync' in IntelliJ, because if it is enabled, the Export Settings action is hidden in the File menu.

NobodySomewhere
- 2,997
- 1
- 16
- 12