- Android min sdk 21 (Android 5.0)
- Java 11 (to run tests from command line)
Clone the repo with git clone [email protected]:TobiAlbert/MyFloatingActionButton.git
Use Android studio to manually import the customfab
android library module as a dependency in your build.gradle
file.
You should have something like this after importing the project.
dependencies {
implementation project(':customfab')
}
CustomFab(this)
The project contains both unit and instrumentation tests.
- Use
./gradlew customfab:test
to run unit tests on your local host - User
./gradlew customfab:cAT
ro run instrumentation tests on an emulator or physical device.