https://github.com/circleci/espressosample
A sample Android application with Espresso UI tests
https://github.com/circleci/espressosample
Last synced: about 1 year ago
JSON representation
A sample Android application with Espresso UI tests
- Host: GitHub
- URL: https://github.com/circleci/espressosample
- Owner: circleci
- Archived: true
- Created: 2015-12-16T14:01:17.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2024-02-16T20:29:12.000Z (over 2 years ago)
- Last Synced: 2025-03-22T06:42:09.664Z (about 1 year ago)
- Language: Java
- Size: 91.8 KB
- Stars: 55
- Watchers: 46
- Forks: 56
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Codeowners: CODEOWNERS
Awesome Lists containing this project
README
# CircleCI Espresso sample
[](https://circleci.com/gh/circleci/EspressoSample)
Highlights:
* `com.android.ddmlib.DdmPreferences.setTimeOut(60000)` in the
`android.defaultConfig` section of the `build.gradle` file
([example](https://github.com/circleci/EspressoSample/blob/master/app/build.gradle))
* the `circle.yml` sets the ADB_INSTALL_TIMEOUT environment variable
([example](https://github.com/circleci/EspressoSample/blob/master/circle.yml#L5))
* there is a `sleep 30` command before the screen unlock operation
([example](https://github.com/circleci/EspressoSample/blob/master/circle.yml#L22))
We also recommend that you set the `TERM` variable to `dumb` for better
Gradle command-line output
([example](https://github.com/circleci/EspressoSample/blob/master/circle.yml#L4)).