Skip to content

Commit c49bdab

Browse files
docs: add success line to code
1 parent 188003a commit c49bdab

3 files changed

Lines changed: 26 additions & 4 deletions

File tree

docs/docs/bootstrap/BOOTSTRAP_TESTING.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,11 @@ You can also change it later in `app.config.ts` file as follows:
7777
```js
7878
// CONFIG: Add your android adaptive icon background color here
7979
adaptiveIconBackgroundColor: {
80+
// success-line
8081
production: 'bg_color_production',
82+
// success-line
8183
staging: 'bg_color_staging',
84+
// success-line
8285
qa: 'bg_color_qa',
8386
},
8487
```

docs/docs/deploy/DEPLOY_ANDROID.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,23 +29,27 @@ Configure buildType in eas.json as follows:
2929

3030
```json
3131
{
32+
// ...
3233
"build": {
3334
"production": {
3435
"android": {
36+
// success-line
3537
"buildType": "app-bundle" // you can choose here between apk and app-bundle
36-
// ...rest of the properties
38+
// ...
3739
}
3840
},
3941
"staging": {
4042
"android": {
43+
// success-line
4144
"buildType": "app-bundle" // you can choose here between apk and app-bundle
42-
// ...rest of the properties
45+
// ...
4346
}
4447
},
4548
"qa": {
4649
"android": {
50+
// success-line
4751
"buildType": "apk" // you can choose here between apk and app-bundle
48-
// ...rest of the properties
52+
// ...
4953
}
5054
}
5155
}
@@ -300,18 +304,21 @@ Configure eas.json to use the <b>Google Account Service</b> key, and to send a n
300304
"submit": {
301305
"production": {
302306
"android": {
307+
// success-line
303308
"serviceAccountKeyPath": "path_to_your_google_service_account_key",
304309
"track":"internal"
305310
}
306311
},
307312
"staging": {
308313
"android": {
314+
// success-line
309315
"serviceAccountKeyPath": "path_to_your_google_service_account_key",
310316
"track":"internal"
311317
}
312318
},
313319
"qa": {
314320
"android": {
321+
// success-line
315322
"serviceAccountKeyPath": "path_to_your_google_service_account_key",
316323
"track":"internal"
317324
}

docs/docs/deploy/DEPLOY_IOS.mdx

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,22 +120,31 @@ Configure eas.json file.
120120
"submit": {
121121
"production": {
122122
"ios": {
123+
// success-line
123124
"ascAppId": "your_appStore_app_id",
125+
// success-line
124126
"appleTeamId": "your_apple_team_id",
127+
// success-line
125128
"appName": "your_app_name"
126129
}
127130
},
128131
"staging": {
129132
"ios": {
133+
// success-line
130134
"ascAppId": "your_appStore_app_id",
135+
// success-line
131136
"appleTeamId": "your_apple_team_id",
137+
// success-line
132138
"appName": "your_app_name"
133139
}
134140
},
135141
"qa": {
136142
"ios": {
143+
// success-line
137144
"ascAppId": "your_appStore_app_id",
145+
// success-line
138146
"appleTeamId": "your_apple_team_id",
147+
// success-line
139148
"appName": "your_app_name"
140149
}
141150
}
@@ -223,20 +232,23 @@ After applying this data submission process will start. CONGRATULATIONS !! 🥳
223232

224233
Add the following lines (do not remove existing configuration added in 4.b.i step).
225234

226-
```
235+
```json
227236
"submit": {
228237
"production": {
229238
"ios": {
239+
// success-line
230240
"appleId": "your_apple_id",
231241
}
232242
},
233243
"staging": {
234244
"ios": {
245+
// success-line
235246
"appleId": "your_apple_id",
236247
}
237248
},
238249
"qa": {
239250
"ios": {
251+
// success-line
240252
"appleId": "your_apple_id",
241253
}
242254
}

0 commit comments

Comments
 (0)