1

For my project in Android Studio I need a plugin. Since I want other developers to use and test my code, they have to download the plugin manually when opening the project. What could I implement that Android Studio automatically installs this plugin when a user opens the project (who has not already installed this plugin)?

Thank you in advance

Y.Millner
  • 41
  • 1
  • 6

1 Answers1

1

Attach your Gradle file with the project. The Gradle must contain all your required libraries and plugins mentioned.

Read, Adding Custom Plugins with Gradle.

Hope this helps.

MD Naseem Ashraf
  • 1,030
  • 2
  • 9
  • 22
  • The plugin should be downloaded from gitlab. So the Android Studio of other developers should install automatically this plugin. That is why I don't think it is possible with dependencies in gradle.build... – Y.Millner Mar 12 '19 at 15:27