Skip to content

Commit 56ad722

Browse files
authored
Further clarification
1 parent 5f4cd75 commit 56ad722

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

resources/views/docs/mobile/1/getting-started/installation.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,13 @@ order: 100
1010
3. [A NativePHP for Mobile license](https://nativephp.com/mobile)
1111

1212
### For iOS
13-
1. An Apple Silicon Mac running macOS 12+ with Xcode 16+
13+
1. An Apple Silicon Mac running macOS 12+ with [Xcode 16+](https://apps.apple.com/app/xcode/id497799835)
1414
2. An active [Apple Developer account](https://developer.apple.com/)
15-
3. You can download Xcode from the Mac App Store
16-
4. _Optional_ iOS device
15+
3. _Optional_ iOS device
16+
17+
You **do not** need to enroll in the [Apple Developer Program](https://developer.apple.com/programs/enroll/) ($99/year)
18+
to develop and test your apps on a Simulator. But you will need to when you want to test your apps on real devices
19+
and start distributing them to your users via the App Store.
1720

1821
> **Note** You cannot build iOS apps on Windows or Linux
1922
@@ -26,14 +29,14 @@ order: 100
2629
#### On macOS
2730
```shell
2831
export JAVA_HOME=$(/usr/libexec/java_home -v 17) // This isn't required if JAVA_HOME is already set in the Windows Env Variables
29-
export ANDROID_SDK_ROOT=$HOME/Library/Android/sdk
32+
export ANDROID_HOME=$HOME/Library/Android/sdk
3033
export PATH=$PATH:$JAVA_HOME/bin:$ANDROID_HOME/emulator:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$ANDROID_HOME/platform-tools
3134
```
3235
3336
#### On Windows
3437
```shell
35-
set ANDROID_SDK_ROOT=C:\Users\yourname\AppData\Local\Android\Sdk
36-
set PATH=%PATH%;%JAVA_HOME%\bin;%ANDROID_SDK_ROOT%\platform-tools
38+
set ANDROID_HOME=C:\Users\yourname\AppData\Local\Android\Sdk
39+
set PATH=%PATH%;%JAVA_HOME%\bin;%ANDROID_HOME%\platform-tools
3740
3841
# This isn't required if JAVA_HOME is already set in the Windows Env Variables
3942
set JAVA_HOME=C:\Program Files\Microsoft\jdk-17.0.8.7-hotspot

0 commit comments

Comments
 (0)