Sin descripción

ios.md 4.4KB

React native Agora iOS Installation

Minimum compatibility

  • >= React native 0.55.x
  • iOS SDK 8.0+
  • Android 5.0+ x86 arm64 armv7a

1. open up your terminal and write this :

When it comes to the version new release you can put any version you like as long as it is compatibility

$ react-native init agoraguide --version react-native@0.58

2. cd into your project folder

$ cd agoraguide

3. install npm package react-native-agora

with npm

$ npm install --save react-native-agora

or yarn

$ yarn add react-native-agora

4. cd into your ios folder

$ cd ios

5. we need to initialize pod

if you don’t have CocoaPods installed run this command in your terminal

$ gem install cocoapods

after you have installed CocoaPods run this command inside of your ios folder

$ pod init

and then we need to install the pods

$ pod install

if you get a error from CocoaPods saying something like this : Step 5 then you need to open up your Podfile and remove the part that is blue marked in the picture below

before

Step 5

after

Step 5

we need to add this code at the bottom to our Podfile

post_install do |installer|
  installer.pods_project.targets.each do |target|

    # The following is needed to ensure the "archive" step works in XCode.
    # It removes React & Yoga from the Pods project, as it is already included in the main project.
    # Without this, you'd see errors when you archive like:
    # "Multiple commands produce ... libReact.a"
    # "Multiple commands produce ... libyoga.a"

    targets_to_ignore = %w(React yoga)
    
    if targets_to_ignore.include? target.name
      target.remove_from_project
    end

  end
end

This is how your podfile should look like Step 5 after that you can run this command again

$ pod install

6. Open up your Xcode project [project name].xcworkspace inside in ios folder

Step 6

7. expand your project folder and right click on the “Libraries” folder and choose “add files to [project name]”

Step 7

8. follow the image below to find the RCTAgora lib

Step 8 the path is node_modules => react-native-agora => ios => RCTAgora.xcodeproj

make sure you check so that those are checked

Step 8

If the file is greyed out it means you already have it inside of you library folder. Check so that RCTAgora.xcodeproj are inside of your “Libraries” folder Step 8

9. we need to add the framework

expand your “Frameworks” folder and you should see the “AgoraRtcEngineKit.framework” are red. Step 9 right click and delete that Left click on your “RCTAgora.xcodeproj” and click on “Build Phases” Step 9 left click on the “AgoraRtcEngineKit.framework” in the list and click on the “-”(minus sign) to remove it from the list. Step 9 then click on the “+”(plus sign) so that we can add the framework. Click on the “Add other…” button Step 9 then we need to navigate and find our framwork Step 9 the path is : ios => Pods => AgoraRtcEngine_iOS => AgoraRtcEngineKit.framework and click on “add”

10. at last we need to link the library

click on your project on the left and then click on “Build Phases” and then expand “Link Binary With Libraries” and then click on the “+”(plus sign) Step 10 Search for libRCTAgora and click on add Step 10 if you cant find it in your list check so that you dont already have it


Troubleshooting

if you get some errors like the pictures below Step t1 Step t2

the chances are that you have some framework that already have imported time.h something like firestore.

Expand your “Libraries” and then click on “RCTAgora.xcodeproj”. Then click on “Build settings” and search for “Header search paths” Step t3 Doubble click on the path Step t4 and change the Pods path from “recursive” to non-recursive Step t5