zIronManBox
zIronManBox

Reputation: 5067

How to: Install Plugin in Android Studio

I'm looking for installing custom plugin on Android Studio, how can I go about it?

Upvotes: 153

Views: 241929

Answers (10)

SHUBHAM SONI
SHUBHAM SONI

Reputation: 111

If anyone need to manually adding any plugin

  1. Download any plugin manually from official plugin site like : In my case i have downloaded Lombok plugin [https://projectlombok.org/download]
  2. Extract to jar file
  3. Paste Extract file from this path on your PC Folder
  4. path : C:\Program Files\Android\Android Studio\plugins
  5. Restart you pc
  6. after you can verify its feature

Upvotes: 0

espongha
espongha

Reputation: 225

Updated 2021 (for Mac Users Only)

Android->Preferences enter image description here

Then click on Plugins.

enter image description here

Upvotes: 0

Sunil KV
Sunil KV

Reputation: 763

Recently I started using the Mac Pc for android development. When I go to

Android Studio => File => Other setting => Preference for New Projects..

I was not able to find plugin option in the setting page.

enter image description here

Later while clicking option on the toolbar, I clicked on "SDK Manager" it prompted the Settings where the Plugin option was visible and I was able to add the plugins from here.

[enter image description here

After this, it opens the following setting enter image description here

On clicking the **Plugin**  it will open above tab

Upvotes: 4

N J
N J

Reputation: 27505

1) Launch Android Studio application

2) Choose File -> Settings (For Mac Preference )

3) Search for Plugins

enter image description here

In Android Studio 3.4.2

enter image description here

Upvotes: 253

simpleuser
simpleuser

Reputation: 1682

2019: With Android Studio 3.4.2 started:

  1. Click on File -> Settings
  2. Find "Plugins" in the left pane of the popup window and click on it
  3. Click on the Gear in the upper right
  4. Click on "Install Plugin from Disk"
  5. Find your plugin from the file browser or drag and drop it from another window to go to it in the browse window, then click on it then click "OK"
  6. The browse window will close
  7. Click "OK" on the setting window
  8. Click "Restart" on the popup

Upvotes: 0

Morozov
Morozov

Reputation: 5240

Press Ctrl - Alt - S (Settings)

Then choose Plugins

Upvotes: 12

zIronManBox
zIronManBox

Reputation: 5067

  1. Launch Android Studio application
  2. Choose Project Settings
  3. Choose Plugin from disk, if on disk then choose that location of *.jar, in my case is GenyMotion jar
  4. Click on Apply and OK.
  5. Then Android studio will ask for Restart.

That's all Folks! enter image description here

Upvotes: 28

Daniel Casserly
Daniel Casserly

Reputation: 3543

As far as installing a custom plugin there is a good walkthrough on GitHub for the rest2mobile library that could be used for any plugin.

Basically the steps are as follows:

  1. Run Android Studio.
  2. From the menu bar, select Android Studio > Preferences.
  3. Under IDE Settings, click Plugins and then click Install plugin from disk.
  4. Navigate to the folder where you downloaded the plugin and double-click it.
  5. Restart Android Studio.

Upvotes: 8

Chandrakanth
Chandrakanth

Reputation: 3831

File-> Settings->Under IDE Settings click on Plugins. Now in right side window Click on Browse repositories and there you can find the plugins. Select which one you want and click on install

Upvotes: 7

Ankit Kumar
Ankit Kumar

Reputation: 3723

if you are on Linux (Ubuntu)... the go to File-> Settings-> Plugin and select plugin from respective location.

If you are on Mac OS... the go to File-> Preferences-> Plugin and select plugin from respective location.

Upvotes: 4

Related Questions