tencent cloud

Mobile Live Video Broadcasting

Release Notes and Announcements
TUILiveKit Release Notes
Live SDK Release Notes
User Guide
Product Introduction
Overview
Strengths
Performance Statistics
Concepts
Purchase Guide
TRTC Live Billing Overview
Billing of Video Live Component
Activating the Service (TUILiveKit)
Free Demo
Demo
Run Demo(TUILiveKit)
Integration Guide
Video Live Streaming
Preparation
Host Live Streaming
Audience Viewing
Live Stream List Live Stream List
Voice Chat Room
Preparation
Host Live Streaming
Audience Viewing
Live Stream List
Live Streaming Kit
Live Streaming Kit(Electron Desktop Application)
Live Streaming Kit(Web Desktop Browser)
Live Broadcast Monitoring
Monitoring Webpage (Web Desktop Browser React)
Monitoring Webpage (Web Desktop Browser Vue)
UI Customization
Live Stream Video Component
Video Source Editing Canvas
Audience List Component
Barrage Component
Media Source Configuration Panel
Link Management Panel
Live Gift Component
No UI Integration
Video Live Streaming
Voice Chat Room
Feature Guide
Follow Anchors (TUILiveKit)
Ultimate Image Quality (TUILiveKit)
Push Media Stream Into Room (TUILiveKit)
Gift System (TUILiveKit)
Client APIs
Android
iOS
Web
Server APIs (TUILiveKit)
Account System
REST API
Third-Party Webhooks
Error Codes (TUILiveKit)
FAQs
Platform Compilation
User Authentication
Live SDK
Product Introduction
Purchase Guide
Free Demo
Free Trial License
SDK Download
Licenses
Advanced Features
Client API
FAQs
Integration (No UI)
API Documentation
OSS information
OSS Attribution Notice

Android

포커스 모드
폰트 크기
마지막 업데이트 시간: 2025-11-11 15:52:08
This document describes how to quickly integrate Tencent Cloud LiteAVSDK for Android into your project.

Environment Requirements

Android Studio 4.0 or above
Android 4.4 (SDK API level 16) or above

Integrating the SDK (AAR)

You can use Gradle to automatically load the AAR file or manually download the AAR file and import it into your project.

Method 1: automatic loading (AAR)

Since JCenter has been deprecated, you can configure a Maven Central repository in Gradle to automatically download and update LiteAVSDK. Open your project with Android Studio and modify the build.gradle file as described below to complete the integration.



1. Open build.gradle under your application.
2. Add the LiteAVSDK dependency to dependencies.
dependencies {
implementation 'com.tencent.liteav:LiteAVSDK_Live:latest.release'
}
Or
dependencies {
implementation 'com.tencent.liteav:LiteAVSDK_Live:latest.release@aar'
}

3. In defaultConfig, specify the CPU architecture to be used by the application. Currently, LiteAVSDK supports armeabi, armeabi-v7a, and arm64-v8a.
defaultConfig {
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
4. Click the Sync Now button

to sync the SDK. If you have no problem accessing Maven Central, the SDK will be downloaded and integrated into your project automatically.

Method 2: manual download (AAR)

If you have problem accessing Maven Central, you can manually download the SDK and integrate it into your project.
1. Download LiveAVSDK and decompress the file.
2. Copy the AAR file in the SDK directory to the app/libs directory of your project.


3. Add flatDir to build.gradle under your project’s root directory to specify the local path for the repository.


4. Add the LiteAVSDK dependency and, in app/build.gradle, add code that references the AAR file.


implementation(name:'LiteAVSDK_Live_11.2.0.13154', ext:'aar')
5. In defaultConfig of app/build.gradle, specify the CPU architecture to be used by the application. Currently, LiteAVSDK supports armeabi, armeabi-v7a, and arm64-v8a.
defaultConfig {
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
6. Click Sync Now to complete the integration of LiteAVSDK.

Integrating the SDK (JAR)

If you do not want to import the AAR library, you can also integrate LiteAVSDK by importing JAR and SO libraries.
1. Download LiveAVSDK and decompress the file. In the SDK directory, find LiteAVSDK_Live_xxx.zip (xxx indicates the version number of LiteAVSDK).

2. Decompress the file, and you will find a libs directory that contains a JAR file and several SO folders, as shown below:


3. Copy the JAR file and armeabi, armeabi-v7a, and arm64-v8a folders to the app/libs directory.


4. Add code that references the JAR library in app/build.gradle.


dependencies {
implementation fileTree(dir:'libs',include:['*.jar'])
}
5. Add flatDir to build.gradle under the project’s root directory to specify the local path for the repository.


6. In app/build.gradle, add code that references the SO libraries.


7. In defaultConfig of app/build.gradle, specify the CPU architecture to be used by the application. Currently, LiteAVSDK supports armeabi-v7a, and arm64-v8a.
defaultConfig {
ndk {
abiFilters "armeabi-v7a", "arm64-v8a"
}
}
8. Click Sync Now to complete the integration.

Setting Packaging Parameters




packagingOptions {
pickFirst '**/libc++_shared.so'
doNotStrip "*/armeabi/libYTCommon.so"
doNotStrip "*/armeabi-v7a/libYTCommon.so"
doNotStrip "*/x86/libYTCommon.so"
doNotStrip "*/arm64-v8a/libYTCommon.so"
}


Configuring Permissions

Configure permissions for your application in AndroidManifest.xml. LiteAVSDK needs the following permissions:
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.ACCESS_WIFI_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECORD_AUDIO" />
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS" />
<uses-permission android:name="android.permission.BLUETOOTH" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
<uses-feature android:name="android.hardware.camera.autofocus" />

Configuring License

Click Get License to obtain a trial license. You will get two strings: a license URL and a decryption key.
Before you use the features of MLVB Enterprise Edition in your application, complete the following configurations (preferably in the application class).
public class MApplication extends Application {

@Override
public void onCreate() {
super.onCreate();
String licenceURL = ""; // your licence url
String licenceKey = ""; // your licence key
V2TXLivePremier.setEnvironment("GDPR"); // set environment
V2TXLivePremier.setLicence(this, licenceURL, licenceKey);
V2TXLivePremier.setObserver(new V2TXLivePremierObserver() {
@Override
public void onLicenceLoaded(int result, String reason) {
Log.i(TAG, "onLicenceLoaded: result:" + result + ", reason:" + reason);
}
});
}
}


Configuring Obfuscation Rules

In the proguard-rules.pro file, add LiteAVSDK classes to the "do not obfuscate" list.
-keep class com.tencent.** { *;}

FAQs

1. How to solve the crash problem when using the LiteAVSDK screen recording/screen sharing function on the Android side?

Please check the targetSdkVersion setting in the project first. If it is set to 29, then running Android 10 devices using screen recording and sharing will trigger a flashback problem. The reason is that the Android privacy policy has changed. The solution needs to start the foreground service and specify the type as mediaProjection. There is no need to call startScreenCapture in the Service.

2. How to solve the problem of symbol conflict between multiple SDKs of LiteAVSDK series such as live SDK/real-time audio/video/player integrated in the project?

If you integrate 2 or more LiteAVSDK products (live broadcast, player, TRTC, short video), there will be a library conflict problem when compiling, because some SDK underlying libraries have the same symbol files, it is recommended to integrate only one full-featured version of the SDK. Live broadcast, player, TRTC, and short video are all included in one SDK.For details, please refer to SDK Download.

도움말 및 지원

문제 해결에 도움이 되었나요?

피드백