### Installation - Gradle Dependency Source: https://github.com/asteroid-spoofer/asteroidapi/blob/master/README.md Gradle configuration to add the AsteroidAPI as a dependency, including the necessary Jitpack repository. ```gradle repositories { maven { url 'https://jitpack.io' } } dependencies { implementation 'com.github.Asteroid-Spoofer:AsteroidAPI:Tag' } ``` -------------------------------- ### Installation - Maven Dependency Source: https://github.com/asteroid-spoofer/asteroidapi/blob/master/README.md Maven configuration to add the AsteroidAPI as a dependency, including the necessary Jitpack repository. ```xml jitpack.io https://jitpack.io com.github.Asteroid-Spoofer AsteroidAPI Tag ``` -------------------------------- ### Development Workflow - Commit Changes Source: https://github.com/asteroid-spoofer/asteroidapi/blob/master/README.md Commands to stage all changes and commit them with a descriptive message during the development process. ```bash git add . git commit -m Descriptive commit message ``` -------------------------------- ### Development Workflow - Push Branch Source: https://github.com/asteroid-spoofer/asteroidapi/blob/master/README.md Command to push the newly created and committed branch to the remote repository. ```bash git push origin feature/your-feature-name ``` -------------------------------- ### Development Workflow - Create Branch Source: https://github.com/asteroid-spoofer/asteroidapi/blob/master/README.md Command to create a new Git branch for feature development, following the project's branching strategy. ```bash git checkout -b feature/your-feature-name ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.