Thank you for your interest in contributing to AURA! We appreciate every contributor.
Download the latest APK and test it right away:
- Fork this repository (click the Fork button on top right)
- Clone your forked repo to your computer:
git clone https://github.com/YOUR_USERNAME/AURA.git
cd AURA
- Create a new branch (Never commit directly to main)
checkout -b your-branch-name
- Make your changes.
- Remove cache before committing (especially .idea folder)
git add .
git rm -r --cached .idea
- Commit your changes.
git commit -m "Your meaningful commit message"
- Push to your branch with PR
git push origin your-branch-name