-
Notifications
You must be signed in to change notification settings - Fork 0
Setting Up Ironhide
#How to Set Up Ironhide
Before getting started make sure to read the Espresso Set Up Instructions here
You can get started with Ironhide in one of two ways:
First:
-
Download the JAR file from the Ironhide repository
-
Put the Ironhide JAR in the libs folder in your app.
-
Add
androidTestCompile files('libs/Ironhide-1.X.X.jar')
in the dependencies section of your build.gradle file
Second, You can build the JAR file your self by downloading the full Ironhide repository:
-
Clone the Ironhide repository to the desktop
-
Open Ironhide in Android Studio (or Eclipse).
-
Open the build.gradle file inside the lib folder
-
Right click on
task coreLibJar(type: Jar){
and select "Run Make.jar" -
The JAR can then be found in "YourDirectory\Ironhide\lib\build\libs"
-
Do the steps in the first method with your newly generated JAR.
-
You can use this method if you wan't to tweak Ironhide or put in more helper methods for your own use.