Android Build Support, iOS Build Support, Windows Build Support, MacOS Build Support .
SDKAppID and SDKSecretKey on Basic informaction. SDKAppID and SDKSecretKey is needed for running demo. 
git clone https://github.com/LiteAVSDK/TRTC_Unity.git
TRTC-Simple-Demo/Assets/TRTCSDK/Demo/TRTC/Tools/GenerateTestUserSig.cs, and set the relevant parameters in GenerateTestUserSig.cs:SDKAPPID: A placeholder by default. Set it to the actual SDKAppID.SDKSECRETKEY: A placeholder by default. Set it to the actual key.UserSig described in this document involves configuring SDKSECRETKEY in the client code. In this method, SDKSECRETKEY may be easily decompiled and reversed, and if your key is disclosed, attackers can steal your Tencent Cloud traffic. Therefore, this method is only suitable for the local execution and debugging of TRTC-Simple-Demo.UserSig into your server and provide an application-oriented API. When UserSig is needed, your application can send a request to your server for a dynamic UserSig. For more information, see How do I calculate UserSig during production.
enterRoom first and go on to test other APIs. The data display window shows whether the call is successful, and the other window displays the callback information.
TRTC-Simple-Demo/Builds/iOS/TRTCUnityDemo directory, and open the project generated (Unity-iPhone.xcodeproj) with Xcode.

├─Assets├── Editor // Unity Editor script│ ├── FixAppSign.cs // Unity iOS Signature Configuration├── Plugins│ ├── Android│ │ ├── AndroidManifest.xml //Android configuration file├── StreamingAssets // Audio/Video stream files for the Unity demo├── TRTCSDK├── Demo // Unity Demo├── Editor│ ├── AppleConfigProject.cs // Unity Build Configuration Tool for iOS│ ├── BuildScript.cs // Unity navigation bar adds shortcut buttons for building different platforms│ └── IOSAddDylib.cs // Unity Build TRTC library file addition and configuration for iOS platform├── SDK // TRTC Unity SDK├── Plugins // Store library files of TRTC SDK for Unity for different platforms├── Scripts // Header files of TRTC SDK for Unity├── Implement // Implementation layer code file of TRTC SDK for Unity├── Include // Header files code file of TRTC SDK for Unity
Feedback