@@ -10,10 +10,13 @@ order: 100
10
10
3 . [ A NativePHP for Mobile license] ( https://nativephp.com/mobile )
11
11
12
12
### 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 )
14
14
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.
17
20
18
21
> ** Note** You cannot build iOS apps on Windows or Linux
19
22
@@ -26,14 +29,14 @@ order: 100
26
29
#### On macOS
27
30
``` shell
28
31
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
30
33
export PATH=$PATH:$JAVA_HOME/bin:$ANDROID_HOME/emulator:$ANDROID_HOME/tools:$ANDROID_HOME/tools/bin:$ANDROID_HOME/platform-tools
31
34
```
32
35
33
36
#### On Windows
34
37
```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
37
40
38
41
# This isn' t required if JAVA_HOME is already set in the Windows Env Variables
39
42
set JAVA_HOME=C:\P rogram Files\M icrosoft\j dk-17.0.8.7-hotspot
0 commit comments