-
Notifications
You must be signed in to change notification settings - Fork 1
/
build.json
35 lines (35 loc) · 1.09 KB
/
build.json
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
33
34
35
{
"command to show all ios certificate": "security find-identity -v -p codesigning",
"remove everything if you don't sign your application": "{}",
"the buildFlag is use for XCode 10": "use with cordova-ios < 5",
"android": {
"debug": {},
"release": {
"keystore": "YOUR_ANDROID_KEYSTORE_FILE",
"keystoreType": "jks",
"alias": "YOUR_ALIAS",
"storePassword": "YOUR_STORE_PASSWORD",
"password" : "YOUR_KEY_PASSWORD"
}
},
"ios": {
"debug": {
"packageType": "development",
"provisioningProfile": "YOUR_PROVISIONING_PROFILE_UUID_FOR_DEV",
"developmentTeam": "YOUR_APPLE_TEAM_ID",
"codeSignIdentity": "YOUR_SIGN_IDENTITY_NAME_FOR_DEV",
"buildFlag": [
"-UseModernBuildSystem=0"
]
},
"release": {
"packageType": "ad-hoc || app-store",
"provisioningProfile": "YOUR_PROVISIONING_PROFILE_UUID_FOR_DISTRIBUTION",
"developmentTeam": "YOUR_APPLE_TEAM_ID",
"codeSignIdentity": "YOUR_SIGN_IDENTITY_NAME_FOR_DISTRIBUTION",
"buildFlag": [
"-UseModernBuildSystem=0"
]
}
}
}