Skip to content

Commit 6e49732

Browse files
committed
fix some type error
1 parent 4f72d6c commit 6e49732

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/beta builds.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -184,11 +184,11 @@ fastlane beta
184184

185185
Before continuing make sure you have:
186186

187-
- [ ] An Google Play Console account with an admin rights, with its username (email, for example `[email protected]`) and password
187+
- [ ] A Google Play Console account with an admin rights, with its username (email, for example `[email protected]`) and password
188188
- [ ] Unlike for iOS, Fastlane can't create applications in the Google Play Console. You must create your application before in the Google Play Console
189189
- [ ] Use the right [.gitignore](android/.gitignore) file inside the `android` directory
190-
- [ ] [Collect your Google Credentials](https://docs.fastlane.tools/getting-started/android/setup/#collect-your-google-credentials)
191-
:warning: In the Google Play Console, add the parameter `&hl=en` at the end of the URL (before any #) to switch to English. In some languages, the "Create Service Account" will not be able.
190+
- [ ] [Collect your Google Credentials](https://docs.fastlane.tools/getting-started/android/setup/#collect-your-google-credentials)
191+
:warning: In the Google Play Console, add the parameter `&hl=en` at the end of the URL (before any #) to switch to English. In some languages, the "Create Service Account" will not be able.
192192
Download the JSON key file, and copy it into `my-project/android/key.json`
193193
- [ ] Install [all dependencies](https://facebook.github.io/react-native/docs/getting-started.html#installing-dependencies-1) for macOS and Android
194194

@@ -209,28 +209,28 @@ The following questions will be asked:
209209
* `Path to the json secret file`
210210
* Type `key.json` (path to the file previously created in the Prerequisites step)
211211
* Download existing metadata and setup metadata management?
212-
* y
212+
* `y`
213213

214214
Fastlane will then give you some information about git, the files it will create, etc. Just type `enter` to continue.
215215

216216
Congrats! Fastlane has created some files.
217217
If you are using Git, commit all generated files.
218218

219-
Once the setup has finished you can see a new folder inside the `ios` folder:
219+
Once the setup has finished you can see a new folder inside the `android` folder:
220220
```
221221
- fastlane/
222222
- Appfile
223223
- Fastfile
224224
```
225225

226-
`Appfile` contains identifiers used to connect to the Google Play Console and the link to the `key.json` file.
226+
`Appfile` contains identifiers used to connect to the Google Play Console and the link to the `key.json` file.
227227
You can read more about this file [here](https://docs.fastlane.tools/advanced/#appfile).
228228

229229
`Fastfile` contains all actions you can launch.
230230
You can read more about this file [here](https://docs.fastlane.tools/actions).
231-
A `beta` [lane](https://docs.fastlane.tools/advanced/lanes/) a `deploy` lane and a `test` are available by default.
231+
A `beta [lane](https://docs.fastlane.tools/advanced/lanes/)`, a `deploy lane` and a `test lane` are available by default.
232232

233-
You can remove the `deploy` lane to avoid some mistakes, and replace the `beta` lane by the following:
233+
You can remove the `deploy lane` to avoid some mistakes, and replace the `beta` lane by the following:
234234
```
235235
desc "Submit a new Beta Build to Play Store"
236236
lane :beta do

0 commit comments

Comments
 (0)