Skip to content
This repository has been archived by the owner on Sep 25, 2021. It is now read-only.

Building Clover

Florens edited this page Jan 13, 2018 · 8 revisions

Building Clover

Install the required tools

Fork and clone

  • Fork Clover by pressing the Fork button
  • Open up a terminal (git bash if on Windows)
  • Clone your new repo git clone https://github.com/YOURNAME/Clover

Setup Android Studio

  • Open Android Studio
  • Click "Open an existing Android Studio project"
  • Select the file Clover/Clover/build.gradle and press OK
  • When asked, install any required tools.
  • Sync the project again and it should be ready.

Create a pull request

  • Commit your changes git commit -a i, enter a descriptive message and save with ESC :wq ENTER
  • Push your changes to your repo git push
  • Make a pull request at https://github.com/YOURNAME/Clover/pulls
  • Make a descriptive title and click Create pull request button

I just want an apk!

You will still need the Android sdk installed, but because we use gradle the following command in the terminal should be enough: ./gradlew assembleDefaultRelease. The apk ends up in Clover/Clover/app/build/outputs/apk/default/release/. See the comment in the build.gradle file how to sign your apk.

Clone this wiki locally