Lutkin Wang
Lutkin Wang
CreateRendererView is no longer required. ```java surfaceView = RtcEngine.CreateRendererView(context); ``` can be replaced with ```java SurfaceView surfaceView = new SurfaceView (getBaseContext()); ```
The SDK version should be 3.4.5 in https://github.com/AgoraIO/API-Examples/blob/dev/3.4.5/windows/APIExample/install.ps1 Otherwise, compatibility issues may occur.
As a demo project, users may find **MultiProcessScreenSharing.java** easier to understand than **MultiProcess.java**. https://github.com/AgoraIO/API-Examples/blob/master/Android/APIExample/app/src/main/java/io/agora/api/example/examples/advanced/MultiProcess.java
The comment here applies to Web SDK 3.x only: ```js // you can find all the agora preset video profiles here https://docs.agora.io/cn/Voice/API%20Reference/web/interfaces/agorartc.stream.html#setvideoprofile var videoProfiles = [ { label: "480p_1", detail:...
Comments are all lost in the dll libraries from nugget:  We need to keep the comments in the libraries for better user experience. See the Official CameraHelper as an...
Fix issue: Cannot login RTM with token because token is not acquired from the ini file Token auth is the recommended method and should be explicitly supported in demo projects
If you specify: ``` [BaseInfo] AppID=XXX AppCertificatedId=XXX ``` The demo reports "invalid token".
Linux Java SDK 的 libagora_rtm_sdk.so 需要改名为 libagora-rtm-sdk-jni.so,否则运行 demo 会报错 java.lang.UnsatisfiedLinkError: no agora-rtm-sdk-jni in java.library.path。  改名后运行恢复正常:  
In https://github.com/AgoraIO/RTM/blob/master/Agora-RTM-Tutorial-Windows/AgoraRTMTutorial/AgoraRTMTutorial.vcxproj, the ini file is still AgoraSignal.ini. ```xml ``` But we are using RTM, right? Should be AgoraRTM.ini instead.
## 文件位置 https://github.com/AgoraIO/Tools/blob/dev/accesstoken2/DynamicKey/AgoraDynamicKey/java/src/main/java/io/agora/chat/ChatTokenBuilder2.java ## 问题 这里的注释有误,会造成误导。需要改动的地方已经使用 `TODO` 标记。 ```java /** * Build the CHAT user token. * * @param appId: The App ID issued to you by Agora. Apply for...