| 123456789101112131415161718192021222324252627 |
- apply plugin: 'com.android.library'
- android {
- compileSdkVersion 29
- defaultConfig {
- minSdk 22
- targetSdk 29
- ndk {
- abiFilters "armeabi-v7a", "arm64-v8a"
- }
- }
- buildTypes {
- release {
- minifyEnabled false
- proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
- }
- }
- }
- dependencies {
- implementation fileTree(dir: 'libs', include: ['*.jar'])
- implementation 'androidx.appcompat:appcompat:1.1.0'
- implementation 'com.tencent.liteav:LiteAVSDK_TRTC:latest.release'
- }
|