Release Notes
Announcements

SDKAppID: The unique identifier for your Chat Application.SDKSecretKey: The secret key for your Application.pubspec.yaml file:tencent_cloud_chat_common: ^4.1.0+1tencent_cloud_chat_conversation: ^4.1.0tencent_cloud_chat_message: ^4.1.0+3tencent_cloud_chat_contact: ^4.1.0tencent_cloud_chat_sticker: ^4.1.0tencent_cloud_chat_message_reaction: ^4.1.0tencent_cloud_chat_text_translate: ^4.1.0tencent_cloud_chat_sound_to_text: ^4.1.0
android/app/src/main/AndroidManifest.xml file, and add the following permissions:<uses-permission android:name="android.permission.RECORD_AUDIO" /><uses-permissionandroid:name="android.permission.READ_EXTERNAL_STORAGE"android:maxSdkVersion="32" /><uses-permission android:name="android.permission.READ_MEDIA_IMAGES" /><!-- Compatibility for Android13 --><uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
ios/Podfile. Add the following permissions:post_install do |installer|installer.pods_project.targets.each do |target|flutter_additional_ios_build_settings(target)target.build_configurations.each do |config|config.build_settings['EXCLUDED_ARCHS[sdk=iphonesimulator*]'] = 'arm64'config.build_settings['ENABLE_BITCODE'] = 'NO'config.build_settings["ONLY_ACTIVE_ARCH"] = "NO"endtarget.build_configurations.each do |config|config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= ['$(inherited)','PERMISSION_MICROPHONE=1','PERMISSION_CAMERA=1','PERMISSION_PHOTOS=1',]endendend
ios/Runner/info.plist and add permission description keys:<key>NSCameraUsageDescription</key><string>Our app requires access to your camera to enable video calling and capturing photos or videos to share in your conversations.</string><key>NSMicrophoneUsageDescription</key><string>Our app requires access to your microphone to enable voice and video calling features.</string><key>NSPhotoLibraryUsageDescription</key><string>Our app requires access to your photo library to enable sharing photos, videos, and files in your conversations.</string>
Was this page helpful?
You can also Contact sales or Submit a Ticket for help.
Help us improve! Rate your documentation experience in 5 mins.
Feedback