-
Notifications
You must be signed in to change notification settings - Fork 56
/
.solidarity
32 lines (32 loc) · 979 Bytes
/
.solidarity
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"$schema": "http://json.schemastore.org/solidaritySchema",
"requirements": {
"Yarn": [{ "rule": "cli", "binary": "yarn", "semver": "^1.3.2" }],
"Node": [{ "rule": "cli", "binary": "node", "semver": ">=8.9.0" }],
"React Native": [
{
"rule": "cli",
"binary": "react-native",
"semver": ">=2.0.1"
}
],
"Xcode": [
{
"rule": "cli",
"binary": "xcodebuild",
"version": "-version",
"semver": ">=9.2.0",
"platform": "darwin"
}
],
"Cocoapods": [
{rule: 'cli', binary: 'pod', platform: 'darwin', semver: '>=1.6.1'},
{rule: 'dir', location: './ios/Pods'}
],
"Android": [
{ "rule": "cli", "binary": "emulator" },
{ "rule": "cli", "binary": "android" },
{ "rule": "env", "variable": "ANDROID_HOME", "error": "The ANDROID_HOME environment variable must be set to your local SDK. Refer to getting started docs for help." }
]
}
}