File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,27 @@ You will also need to ensure that you have a MacOS plan enabled if you want to b
2323## Documentation
2424[ You can read the full documentation here] ( https://circleci.com/orbs/registry/orb/react-native-community/react-native ) .
2525
26+ ## Android
27+
28+ Add this task in your <example >/app/build.gradle
29+
30+ ``` gradle
31+ task downloadDependencies() {
32+ description 'Download all dependencies to the Gradle cache'
33+ doLast {
34+ configurations.findAll().each { config ->
35+ if (config.name.contains("minReactNative") && config.canBeResolved) {
36+ print config.name
37+ print '\n'
38+ config.files
39+ }
40+ }
41+ }
42+ }
43+ ```
44+
2645## Example
46+
2747Here is a full example of how the Orb can be used in a CircleCI workflow to build and test a React Native app:
2848
2949``` yaml
You can’t perform that action at this time.
0 commit comments