File tree Expand file tree Collapse file tree 1 file changed +20
-0
lines changed Expand file tree Collapse file tree 1 file changed +20
-0
lines changed 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
23
23
## Documentation
24
24
[ You can read the full documentation here] ( https://circleci.com/orbs/registry/orb/react-native-community/react-native ) .
25
25
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
+
26
45
## Example
46
+
27
47
Here is a full example of how the Orb can be used in a CircleCI workflow to build and test a React Native app:
28
48
29
49
``` yaml
You can’t perform that action at this time.
0 commit comments