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: challenges/release/03.md
+14-2Lines changed: 14 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
13
13
-[ ] Update your `eas.json` file to [create and install an EAS Build](https://docs.expo.dev/development/create-development-builds/#create-and-install-eas-build).
14
14
15
-
### Android
15
+
### Generate a build for Android
16
16
17
17
-[ ] build a `development` binary on the expo platform for `android`.
18
18
@@ -30,7 +30,7 @@ eas build --profile development --platform android
30
30
31
31
-[ ] Download the build artifact directly on your device from [expo.dev](https://expo.dev) website.
32
32
33
-
### iOS
33
+
### Generate a build for iOS
34
34
35
35
-[ ] build a `development` binary on the expo platform for `iOS`
36
36
@@ -47,3 +47,15 @@ You can check this video for beta testing your React Native application with Exp
47
47
## 👽 Bonus
48
48
49
49
-[ ] add a strategy to simplifying [React Native App Updates with Expo EAS and In-App Updates](https://imighty.hashnode.dev/simplifying-react-native-app-updates-with-expo-eas-and-in-app-updates).
50
+
51
+
### Generate a build locally
52
+
53
+
If you are running out of your free build minutes, you can generate a build locally.
54
+
55
+
```console
56
+
eas build --profile production --platform ios --local
57
+
eas build --profile production --platform android --local
58
+
```
59
+
60
+
...and then download Transporter on your the mac App Store to upload your app on TestFlight.
61
+
For android, upload the `.aab` file on the Google Play Console.
0 commit comments