Skip to content

LuigiVampa92/SkyForge

Repository files navigation

SkyForge

Android Studio IDE plugin that allows you to move gradle build process from your local computer to a remote server


Description

This Android Studio plugin allows you to move high CPU and RAM-consuming Gradle builds of Android projects to a remote server and utilize its resources instead of your local machine. If you work on a weak workstation, like a tiny laptop, then this can greatly boost your performance. You will also experience much less fan noise and overheating. Just turn on the remote builds mode and let the server do all the hard work. You can fall back to local builds mode any time you want, for example, if your server is currently unavailable or you are outside of network coverage. Set up the server connection configuration in plugin settings once and reuse it for any of your Android Studio projects, any time you want.

How it works?

It utilizes the power of ssh and rsync tools. The source code of your Android project is copied to a remote server, then a Gradle build is executed on the remote server, and then the results of the build (APK, AAB files, Proguard mappings, etc.) are pulled back to your local machine and used as usual.

Features

  • Seamless integration with the Android Studio graphical user interface. No special manual commands or scripts are needed. Just turn on the remote builds mode and use the "Run" and "Debug" buttons as usual. You can use Debugger to debug apps on your USB-connected devices, etc.
  • UI is completely native, IDE works on your local computer, not on the server. No network lag for the UI. Low dependency on network quality and stability.
  • No project source code modification is required. You don't need to add any Gradle build plugins, rewrite configs, etc.
  • You can quickly switch between build modes on a local machine or on a remote server with a single button click.
  • All communications between your local machine and your remote server are made ONLY via ssh and secured with its encryption.
  • If your project contains dependencies that are pulled from your company's private Maven or Nexus repositories located inside your company's VPN, you can easily access them on your server by configuring proxy tunnels to your local machine.

Preparation

  • Prepare all the basic stuff on the remote server, openssh server, etc. You will have to do this only once. Check out this server part instruction for details.
  • Prepare ssh and rsync tools on your local computer, as well as proper ssh configuration. You will have to do this only once. Check out this client part instruction for details.
  • Configure the Plugin. Set up an ssh connection to your remote server. Prepare dependencies for builds on remote machine You will have to do this once for the project. Check out this plugin configuration instruction for details.

Usage

  • Press the "Toggle Remote Builds" button to activate the remote builds mode for your project.
  • That is all. Enjoy faster builds! You don't have to do anything specific from now on. Just use Android Studio as you would normally. You can press menu buttons to clean, rebuild projects, etc, you can manually execute any Gradle command in the terminal or Intellij Gradle plugin, you can press the "Run" or "Debug" buttons to make a build and run it on a connected USB device or emulator, you can use the debugger and you can use everything you normally use in your software developer routine. All Gradle commands will be executed on the server, not on your local machine.
  • If you need to disable remote builds mode, just press the "Toggle Remote Builds" button once again, and all Gradle commands will now be performed locally.

Demo

demo_gif

IDE compatability

This plugin is meant to be used in Android Studio. Technically, it will also work in Intellij Idea, but only if your project is an Android project and Gradle is used as a build system.

Install

Install from Settings

In your Android Studio, enter the IDE Settings. Navigate to Plugins, select the Marketplace tab, and search for SkyForge plugin, click the Install Plugin button.

Alternatively, you can download the plugin directly from the JetBrains Marketplace page

Install from release zip

  1. Download the zip file from the releases page
  2. Import it into Android Studio: Settings > Plugins > Click on "Gear" icon > Install Plugin from Disk

Build and install from source code

  1. Download the source code by cloning it with git
  2. Enter the project directory
  3. Execute the Gradle command to build the plugin
git clone https://github.com/LuigiVampa92/SkyForge.git
cd SkyForge
./gradlew buildPlugin

After the build process is completed, you can obtain the result zip file in ./build/distributions directory.

Support

Feedback

If you like, you can provide your feedback and suggest ideas for new features. Here is the list of contacts:

Acknowledgements

This Android Studio plugin uses a Gradle build plugin based on the Mirakle project, which is in turn based on Mainframer. My huge thanks to the authors and contributors of these projects, who introduced the first easy-to-use implementation of this idea and inspired me to develop this IDE plugin. Also, thanks to JetBrains for their open-source plugins and the Intellij developer community for helpful tips.

License

Please see LICENSE for details.