jami-docs

Forked version of Jami documentation, see wrycode.com/jami-docs-demo
git clone git://git.wrycode.com/wrycode/jami-docs.git
Log | Files | Refs

ios.md (769B)


      1 # Building Jami for iOS
      2 
      3 After installing [Brew](https://brew.sh) and Python3 (brew install
      4 python3):
      5 
      6 ```bash
      7 git clone https://review.jami.net/ring-project
      8 cd ring-project
      9 ./make-ring.py --init
     10 ./make-ring.py --dependencies --distribution iOS
     11 ./make-ring.py --install --distribution iOS
     12 cd client-ios/Ring && ./fetch-dependencies.sh && cd ..
     13 xcodebuild build -project Ring/Ring.xcodeproj/ -configuration "Release" -arch "x86_64" -destination "platform=iOS Simulator,name=iPhone $DATE,OS=11" -sdk iphonesimulator11.0 VALID_ARCHS="x86_64"
     14 
     15 
     16 ```
     17 it could be useful to do this if an error occurs:
     18 ```bash
     19 ln -s /usr/local/opt/gettext/bin/autopoint /usr/local/bin
     20 ```
     21 if you get build errors linked to swift, you should upgrade swiftgen:
     22 ```bash
     23 brew upgrade swiftgen
     24 ```