You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The below is a sample configuration for an [Android sample application](https://github.com/CircleCI-Public/MoodTracker/blob/master/.circleci/config.yml).
42
+
41
43
{% raw %}
42
44
43
45
```yaml
44
46
version: 2.1# set the version of your config to enable use of orbs.
45
47
46
48
orbs: # orbs provide lots of bundled functionality for your specific config.
47
-
android: circleci/android@0.2.0
49
+
android: circleci/android@0.2.1
48
50
49
51
jobs:
50
52
build: # setup a "build job
51
53
executor: android/android # set our executor using the `android` orb declared above
52
54
steps:
53
55
- checkout # download your code from your VCS
56
+
- android/restore-build-cache # restore dependency cache if it exists.
0 commit comments