Simple Travis CI example for a Android project.
- Sign up for Travis CI.
- Need to specify the repo you want it to be monitored.
- Configure not to abort on Lint error.
- Open app/build.gradle and add following in the
androidsection.lintOptions { abortOnError false } - Update versions in the
.travis.ymlto be matched with the project. - Test if
gradle buildruns on the local - Push the changes