You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/beta builds.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -184,11 +184,11 @@ fastlane beta
184
184
185
185
Before continuing make sure you have:
186
186
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
188
188
-[ ] Unlike for iOS, Fastlane can't create applications in the Google Play Console. You must create your application before in the Google Play Console
189
189
-[ ] 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.
192
192
Download the JSON key file, and copy it into `my-project/android/key.json`
193
193
-[ ] Install [all dependencies](https://facebook.github.io/react-native/docs/getting-started.html#installing-dependencies-1) for macOS and Android
194
194
@@ -209,28 +209,28 @@ The following questions will be asked:
209
209
*`Path to the json secret file`
210
210
* Type `key.json` (path to the file previously created in the Prerequisites step)
211
211
* Download existing metadata and setup metadata management?
212
-
*y
212
+
*`y`
213
213
214
214
Fastlane will then give you some information about git, the files it will create, etc. Just type `enter` to continue.
215
215
216
216
Congrats! Fastlane has created some files.
217
217
If you are using Git, commit all generated files.
218
218
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:
220
220
```
221
221
- fastlane/
222
222
- Appfile
223
223
- Fastfile
224
224
```
225
225
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.
227
227
You can read more about this file [here](https://docs.fastlane.tools/advanced/#appfile).
228
228
229
229
`Fastfile` contains all actions you can launch.
230
230
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.
232
232
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:
0 commit comments