Manual install
To manually install Signaling SDK, do one of the following:
Automatically integrate the SDK with CocoaPods
To manually install Signaling SDK:
-
In Terminal, navigate to the project path, and run the
pod init
command to create aPodfile
in the project folder. -
Open the
Podfile
, delete all contents, and input the following codes. -
Replace
Your App
with the target name of your project. -
Go back to Terminal, and run the pod update command to update the local libraries.
-
Run the
pod install
command to install Signaling SDK. Once you successfully install the SDK, it showsPod installation complete!
in Terminal, and you can see anxcworkspace
file in the project folder. -
Open the generated
xcworkspace
file.
Manually add the SDK files
v1.4.4 or later :
The iOS apps integrated with the Signaling SDK v1.4.4 cannot be published on the App Store due to review issues. If you want to publish your app on the App Store, you must use other versions of the SDK.
- Extract the files in Signaling SDK to a local folder.
- Copy
AgoraRtmKit.xcframework
from the SDK to your project. - Open Xcode, and navigate to TARGETS > Project Name > General > Frameworks, Libraries, and Embedded Content.
- Click + > Add Other… > Add Files to add the corresponding library. Ensure that the Embed attribute of the dynamic library is Embed & Sign. Once the dynamic library is added, the project automatically links to other system libraries.
The SDK uses the XCFramework. If you are using a build tool that does not support XCFramework integration, Agora provides the following scripts to help you integrate:
- Use the change_to_all_arch.sh script to convert the XCFramework to the universal framework.
- If you need to publish an iOS app on the App Store, use the remove_simulator_arch.sh script to remove the simulator before packaging the app.
The steps to execute these scripts are as follows:
-
Copy the above script files to your the project, and execute the following code to generate AgoraRtmKit.framework:
-
In Xcode, go to the TARGETS > Project Name > Build Phases > Link Binary with Libraries menu, and click + to add the
AgoraRtmKit.xcframework
. Ensure that the Embed attribute of the dynamic library is Embed & Sign.
Earlier than v1.4.4 :
-
Copy the AgoraRtmKit.framework file in the libs folder to the project folder.
-
In Xcode, go to the TARGETS > Project Name > Build Phases > Link Binary with Libraries menu, and click + to add the following frameworks and libraries. To add the AgoraRtmKit.framework file, remember to click Add Other... after clicking +.
- AgoraRtmKit.framework
- libc++.tbd
- libresolv.tbd
- SystemConfiguration.framework
- CoreTelephony.framework