-
Notifications
You must be signed in to change notification settings - Fork 124
Run the iOS Project
srs888001 edited this page May 9, 2020
·
2 revisions
其他语言版本:简体中文
This page introduces how to run the iOS sample project.
-
Make sure you have made the preparations mentioned in the Agora e-Education Guide.
-
Prepare the development environment:
- Xcode 10.0 or later
- CocoaPods
-
Real iOS devices, such as iPhone or iPad.
Follow these steps to run the sample project:
1.Clone the repository to your local machine.
git clone https://github.com/AgoraIO-Usecase/eEducation
2.Enter the directory of the Android project.
cd eEducation/education_iOS
3.Install dependencies.
pod install
4.Open the iOS project
open AgoraEducation.xcworkspace
5.Configure parameters
Pass the following parameters in KeyCenter.m
:
- The Agora App ID that you get.
- The
Authorization
parameter that you have generated for basic HTTP authentication.
For details, see the prerequisites in Agora E-education Guide.
+ (NSString *)agoraAppid {
return <#Your Agora App Id#>;
}
+ (NSString *)authorization {
return <#Your Authorization#>;
}
- Run the project with
command + r
.
- You can read the full set of documentations and API reference at Agora Developer Portal.
- You can ask for technical support by submitting tickets in Agora Console.
- You can submit an issue if you find any bug in the sample project.
Distributed under the MIT License. See LICENSE
for more information.