This is a sample native Android app that contains many of the stock Android components and elements.
In order to run this app on device lab, you will first need to create a local copy of this repository, open the project, and then build the APK from the source.
You will need the app APK
Open your terminal/command prompt and change your directory to your project folder.
Linux and OSX
-
Enter the following command inside the terminal prompt to build the project and test apks:
./gradlew cC
Windows
-
Enter the following command inside the command prompt to build the project and test apks:
gradlew.bat cC
The app APK is called app-debug.apk.
-
This project uses Butterknife in order to create Android views and view listeners through annotations.
-
Your app's package name must match your app's applicationId that is defined in your gradle file. If the two names do not match tests will not run.