Make sure that the two mobile phones use different UserIDs
. With TRTC, you cannot use the same UserID
on two devices simultaneously unless the SDKAppIDs
are different.
The SDK uses the UDP protocol for audio/video transmission and therefore cannot be used in office networks that block UDP. If you encounter such a problem, see How to Deal with Firewall Restrictions to troubleshoot the issue.
Check if it is caused by the debug mode issue on iOS 14 and above. For details, see this Flutter document.
Make sure that in info.plist
of your project, the value of io.flutter.embedded_views_preview
is YES
.
Podfile.lock
in the iOS directory.pod repo update
.pod install
./example/android/app/src/main/AndroidManifest.xml
.xmlns:tools="http://schemas.android.com/tools"
to manifest
.tools:replace="android:label"
to application
.If the error message is as shown below:
target > signing & capabilities
after purchase.In the directory of your main project, run pod install
in the folder of /ios
.
Run flutter clean
and run the project again.
pod install
?If the error message is as shown below:
According to the message, the error is caused by the absence of generated.xconfig
, and to fix the problem, you need to run flutter pub get.
Note:This problem occurs after compilation with Flutter. You won’t run into the problem if you have a new project or have run
flutter clean
.
If the error message is as shown below:
The error may occur because the pods target version fails to meet the requirements of the plugin being depended on. You need to change the target in the pods in question to the specified version.
No, it doesn’t for the time being. For more information on platforms that support custom capturing and rendering, please see Custom Capturing and Rendering > Supported Platforms.
Was this page helpful?