Skip to content

Commit 9ff7e7e

Browse files
authored
Update docs
1 parent 627aa0d commit 9ff7e7e

File tree

1 file changed

+6
-9
lines changed

1 file changed

+6
-9
lines changed

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

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Apple's tooling for building iOS apps requires that you compile your application
1313
2. Laravel 10 or higher
1414
3. An Apple Silicon Mac running macOS 12+ with Xcode 16+
1515
4. An active [Apple Developer account](https://developer.apple.com/)
16-
5. [A NativePHP for iOS license](https://checkout.anystack.sh/nativephp-ios)
16+
5. [A NativePHP for mobile license](https://checkout.anystack.sh/nativephp)
1717
6. _Optional_ iOS device
1818

1919
You don't _need_ a physical iOS device to compile your application and test it for iOS, as NativePHP for mobile supports
@@ -36,20 +36,20 @@ To make NativePHP for mobile a reality has taken a lot of work and will continue
3636
it's not open source and you are not free to distribute or modify its source code.
3737

3838
Before you begin, you will need to purchase a license.
39-
Licenses can be obtained via [Anystack](https://checkout.anystack.sh/nativephp-ios).
39+
Licenses can be obtained via [Anystack](https://checkout.anystack.sh/nativephp).
4040

4141
Once you have your license, you will need to add the following to your `composer.json`:
4242

4343
```json
4444
"repositories": [
4545
{
4646
"type": "composer",
47-
"url": "https://nativephp-ios.composer.sh"
47+
"url": "https://nativephp.composer.sh"
4848
}
4949
],
5050
```
5151

52-
## Install NativePHP for iOS
52+
## Install NativePHP for mobile
5353

5454
```shell
5555
composer require nativephp/ios
@@ -96,13 +96,10 @@ If you want to run your app on a real iOS device, you need to make sure the devi
9696
been added to your Apple Developer account as
9797
[a registered device](https://developer.apple.com/account/resources/devices/list).
9898

99-
You will need to get the device's UDID. You can find this by connecting the device to your Mac and opening it in the
100-
Finder. Click on model name at the top until the UDID appears, then right-click on it to copy it.
101-
102-
Then you can simply run, replacing `{UDID}` with your device's UDID:
99+
Then you can simply run and choose your device from the list of available devices:
103100

104101
```shell
105-
php artisan native:run {UDID}
102+
php artisan native:run
106103
```
107104

108105
Alternatively, you may open the `ios/NativePHP.xcodeproj` file in Xcode and run builds using Xcode's UI.

0 commit comments

Comments
 (0)