With TRTC, you can quickly develop cost-effective, low-latency, and high-quality interactive audio/video services
This document describes how to quickly run the TRTC demo for Flutter.
Environment Requirements
- Flutter 2.0 or above
- Developing for Android:
- Android Studio 3.5 or above
- Devices with Android 4.1 or above
- Developing for iOS:
- Xcode 11.0 or above
- OS X 10.11 or above
- A valid developer signature for your project
Prerequisites
You have signed up for a Tencent Cloud account and completed identity verification.
Directions
Step 1. Create an application
- Log in to the TRTC console and select Development Assistance > Demo Quick Run.
- Click Create Application and enter the application name such as
TestTRTC
. If you have already created an application, click Select Existing Application. - Add or edit tags according to your actual business needs and click Create.
?
- An application name can contain up to 15 characters. Only digits, letters, Chinese characters, and underscores are allowed.
- Tags are used to identify and organize your Tencent Cloud resources. For example, an enterprise may have multiple business units, each of which has one or more TRTC applications. In this case, the enterprise can tag TRTC applications to mark out the unit information. Tags are optional and can be added or edited according to your actual business needs.
Step 2. Download the SDK and demo source code
- Download the SDK and demo source code for your platform.
- Click Next.
Step 3. Configure demo project files
- In the Modify Configuration step, select the development platform in line with the source package downloaded.
- Find and open
/example/lib/debug/GenerateTestUserSig.dart
. - Set parameters in
GenerateTestUserSig.dart
as follows.
- SDKAPPID: a placeholder by default. Set it to the actual `SDKAppID`.
- `SECRETKEY`: a placeholder by default. Set it to the actual key.
- Click Next to complete the creation.
- After compilation, click Return to Overview Page.
?
- The method for generating
UserSig
described in this document involves configuringSECRETKEY
in client code. In this method,SECRETKEY
may be easily decompiled and reversed, and if your key is leaked, attackers can steal your Tencent Cloud traffic. Therefore, this method is only suitable for the local execution and debugging of the demo.- The correct
UserSig
distribution method is to integrate the calculation code ofUserSig
into your server and provide an application-oriented API. WhenUserSig
is needed, your application can send a request to the business server for a dynamicUserSig
. For more information, please see How do I calculate UserSig on the server?.
Step 4. Compile and run
- Run
flutter pub get
. - Compile, run, and debug the project.
Android
- Run
flutter run
. - Open the demo project with Android Studio (3.5 or above), and click Run.
iOS
Open the /ios
demo project in the source code directory with Xcode (11.0 or above) and compile and run the demo project.
FAQs
How do I view TRTC logs?
TRTC logs are compressed and encrypted by default with the .xlog
extension at the following address:
- iOS:
Documents/log
in the sandbox. - Android:
- 6.7 or below:
/sdcard/log/tencent/liteav
. - 6.8 or above:
/sdcard/Android/data/package name/files/log/tencent/liteav/
.
- 6.7 or below:
What should I do if videos do not show on iOS but do on Android?
Please check whether io.flutter.embedded_views_preview
is YES
in your info.plist
.
What should I do if Android Studio fails to build my project with the error “Manifest merge failed”?
Open /example/android/app/src/main/AndroidManifest.xml
.
1. Add xmlns:tools="http://schemas.android.com/tools"
to manifest
.
2. Add tools:replace="android:label"
to application
.
? For more FAQs, please see Flutter.