Skip to content

techygrrrl/Magic8Ballrrr

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🎱 Magic8Ballrrr

Magic8Ballrrr tells you your future!

Features

  • Answer positively, negatively, or with a neutral answer
  • Has a default list of answers for quick implementation
  • Answers can be customized! Assign your own text and emojis to your answers
  • Answer#format() formats the answer text with a preceding emoji
  • Shuffles your answers a lot and chooses a random one using java.security.SecureRandom

Installation & Usage

Installation

This library can be added as a project dependency via Jitpack. The version below will be hardcoded, but use the latest version on Jitpack. You can click the version image above or see the snippets below.

Add to your root build.gradle file:

dependencyResolutionManagement {
  repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
  repositories {
    mavenCentral()
    maven { url 'https://jitpack.io' }
  }
}

Add to your dependencies in your project build.gradle file:

dependencies {
  implementation 'com.github.techygrrrl:Magic8Ballrrr:0.1.1'
}

To learn more about Jitpack, see their docs.

Usage