Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update running iOS sample app guide #129

Merged
merged 1 commit into from
Aug 18, 2024
Merged
Show file tree
Hide file tree
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
9 changes: 8 additions & 1 deletion sample/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,15 @@ Run Android emulator or connect real device.
```

### iOS
In `sample/iosApp/Configuration/Config.xcconfig` set `TEAM_ID` and `BUNDLE_ID` to your values.

Open `sample/iosApp/iosApp.xcodeproj` in XCode build and run
```bash
./gradlew generateDummyFramework
cd sample/iosApp
pod install
```

Open `sample/iosApp/iosApp.xcworkspace` in XCode build and run

### Web JS

Expand Down
6 changes: 3 additions & 3 deletions sample/iosApp/Configuration/Config.xcconfig
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
TEAM_ID=Q86C89UZUH
BUNDLE_ID=com.shepeliev.webrtckmp.sample.WebRTCKMPPlayground
APP_NAME=WebRTC KMP Playground
TEAM_ID=<YOUR_TEAM_ID>
BUNDLE_ID=<YOUR_BUNDLE_ID>
APP_NAME=WebRTC KMP Playground
Loading