TUILiveKit 产品动态
云直播推拉流 SDK 产品动态
dependencies:live_flutter_plugin: latest version number
Info.plist 中加入对相机和麦克风的权限申请:<key>NSCameraUsageDescription</key><string>授权摄像头权限才能正常视频通话</string><key>NSMicrophoneUsageDescription</key><string>授权麦克风权限才能正常语音通话</string>
/android/app/src/main/AndroidManifest.xml 文件。xmlns:tools="http://schemas.android.com/tools" 加入到 manifest 中。tools:replace="android:label" 加入到 application 中。
import 'package:live_flutter_plugin/v2_tx_live_premier.dart';/// 腾讯云License管理页面(https://console.tencentcloud.com/live/license)setupLicense() {// 当前应用的License LicenseUrlvar LICENSEURL = "";// 当前应用的License Keyvar LICENSEURLKEY = "";V2TXLivePremier.setLicence(LICENSEURL, LICENSEURLKEY);}
io.flutter.embedded_views_preview是否为YES。/example/android/app/src/main/AndroidManifest.xml文件。xmlns:tools="http://schemas.android.com/tools"加入到 manifest 中。tools:replace="android:label"加入到 application中。
文档反馈