Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions DEVELOPER-ENVIRONMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,16 @@ in Android Studio. If you're just making a library change in common code it's li
enough to just rely on unit tests or the Android version of TestApp for testing. In other
words there is rarely a need to use Xcode at all.

Download Xcode 16 or lower version(no more than 16.0) and set Xcode 16 as the default xcoder
```shell
sudo xcode-select -s /Applications/Xcode.app # set default xcode

xcode-select -p # check whether set succesfully or not

/Applications/Xcode.app # expected to return

```
Comment thread
hanluOMH marked this conversation as resolved.

To build Testapp in Xcode you will need to create the `samples/testapp/iosApp/DeveloperConfig.xcconfig`
file with the Team ID assigned to you by Apple. The project includes a template which can
be used for this in the `samples/testapp/iosApp/DeveloperConfig.xcconfig.template` file.
Expand All @@ -25,6 +35,7 @@ be used for this in the `samples/testapp/iosApp/DeveloperConfig.xcconfig.templat
cp samples/testapp/iosApp/DeveloperConfig.xcconfig.template samples/testapp/iosApp/DeveloperConfig.xcconfig && \
$EDITOR samples/testapp/iosApp/DeveloperConfig.xcconfig
```
In the opened editor, add the Team ID assigned to you by Apple.

You also need to install [CocoaPods](https://cocoapods.org/) and set up your environment so
it's functional (e.g. the `pod` program is in PATH). Then you need to run
Expand Down