shams-ahmed / SymblAIWithAgoraSDKiOS

Using Symbl.ai in a iOS app with Agora SDK

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Agora API Example for iOS with Symbl.ai

English | 中文

This project presents you a set of API examples to help you understand how to use Agora APIs.

Problem

After users upgrade their iOS devices to iOS 14.0, and use an app that integrates the Agora RTC SDK for iOS for the first time, users see a prompt for finding local network devices. The following picture shows the pop-up prompt:

Solution

Prerequisites

  • Xcode 10.0+
  • Physical iOS device (iPhone or iPad)
  • iOS simulator is NOT supported

Quick Start

This section shows you how to prepare, build, and run the sample application.

Prepare Dependencies

Change directory into iOS folder, run following command to install project dependencies,

pod install

Verify APIExample.xcworkspace has been properly generated.

Obtain an App Id

To build and run the sample application, get an App Id:

  1. Create a developer account at agora.io. Once you finish the signup process, you will be redirected to the Dashboard.

  2. Navigate in the Dashboard tree on the left to Projects > Project List.

  3. Save the App Id from the Dashboard for later use.

  4. Generate a temp Access Token (valid for 24 hours) from dashboard page with given channel name, save for later use.

  5. Open APIExample.xcworkspace and edit the KeyCenter.swift file. In the KeyCenter struct, update <#Your App Id#> with your App Id, and change <#Temp Access Token#> with the temp Access Token generated from dashboard. Note you can leave the token variable nil if your project has not turned on security token.

    struct KeyCenter {
        static let AppId: String = <#Your App Id#>
        
        // assign token to nil if you have not enabled app certificate
        static var Token: String? = <#Temp Access Token#>
    }

You are all set. Now connect your iPhone or iPad device and run the project.

Contact Us

  • For potential issues, take a look at our FAQ first
  • Dive into Agora SDK Samples to see more tutorials
  • Take a look at Agora Use Case for more complicated real use case
  • Repositories managed by developer communities can be found at Agora Community
  • You can find full API documentation at Document Center
  • If you encounter problems during integration, you can ask question in Stack Overflow
  • You can file bugs about this sample at issue

License

The MIT License (MIT)

About

Using Symbl.ai in a iOS app with Agora SDK


Languages

Language:Swift 73.6%Language:Objective-C++ 11.1%Language:Objective-C 7.3%Language:C++ 6.8%Language:Metal 0.6%Language:Shell 0.5%Language:Python 0.2%Language:Ruby 0.1%