Quick Start
Using Fladle takes 3 steps:
-
Apply the Fladle plugin. Follow instructions here
Root
build.gradle
buildscript { dependencies { classpath "com.osacky.flank.gradle:fladle:0.17.5" } }
buildscript { dependencies { classpath("com.osacky.flank.gradle:fladle:0.17.5") } }
Application module
build.gradle
apply plugin: "com.android.application" apply plugin: "com.osacky.fladle"
plugins { id ("com.android.application") id ("com.osacky.fladle") }
-
Configure Authentication using these steps.
Warning
If using buildFlavors or testing against a non default variant, variant must also configured
-
Run your tests!
First assemble your debug apk and test apk.
./gradlew :app:assembleDebug :app:assembleDebugAndroidTest
Note
When using flavors, make sure to assemble your buildVariants.
./gradlew :app:assembleFreeDebug :app:assembleFreeDebugAndroidTest
Run Flank!
./gradlew runFlank