Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio sync settings between different computers

I use 3 different computers for programming in the android studio.

What is the best way to sync android studio settings between computers?

like image 937
Adnan Avatar asked Oct 13 '16 08:10

Adnan


2 Answers

You can do this by configuring the Settings Repository available under the menu File > Settings Repository.

As per the official documentation the settings repository can be either a Github or Bitbucket repository. Though the documentation is for Intellij Idea but the functionality is available in Android Studio as well.

For syncing up your settings via repository, follow the official instructions.

like image 91
Mrinal Avatar answered Sep 18 '22 11:09

Mrinal


The way I do it is exporting settings from Android Studio into Jar archive.

This Jar can then be imported in another instance of Android Studio, or, even, another instance of IntelliJ platform (which is very convenient if you also work with PyCharm etc.).

Take a look at IntelliJ's official documentation: Exporting and Importing Settings

like image 20
Vasiliy Avatar answered Sep 20 '22 11:09

Vasiliy