From d99f976305ec16b29ecad0d5d262974d71c688e1 Mon Sep 17 00:00:00 2001 From: Maciej Procyk Date: Mon, 10 Apr 2023 00:32:05 +0200 Subject: [PATCH] add ios compile docs --- README.md | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/README.md b/README.md index fda2deb9..0c48cd2c 100644 --- a/README.md +++ b/README.md @@ -128,6 +128,29 @@ Gradle from the root directory of project. +### iOS + +#### Run from terminal + +To run iOS version of client cocoapods pod needs to be compiled and installed to XCode project +located in `ios-app`. The easiest way to compile and link all ios targets is to run + +```shell +./gradlew linkPodReleaseFrameworkIosFat linkPodDebugFrameworkIosFat +``` + +from the root directory of project and then + +```shell +./gradlew podInstall +``` + +to install the compiled resources to XCode. + +The last step is to set up the XCode project by first changing the value of `TEAM_ID` in +`ios-app/Configuration/Config.xcconfig` to your own and then open XCode workspace available +in `ios-app`. + ### Android #### Run from Intellij