build.gradle 608 B

123456789101112131415161718192021222324252627
  1. apply plugin: 'com.android.library'
  2. android {
  3. compileSdkVersion 29
  4. defaultConfig {
  5. minSdk 22
  6. targetSdk 29
  7. ndk {
  8. abiFilters "armeabi-v7a", "arm64-v8a"
  9. }
  10. }
  11. buildTypes {
  12. release {
  13. minifyEnabled false
  14. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  15. }
  16. }
  17. }
  18. dependencies {
  19. implementation fileTree(dir: 'libs', include: ['*.jar'])
  20. implementation 'androidx.appcompat:appcompat:1.1.0'
  21. implementation 'com.tencent.liteav:LiteAVSDK_TRTC:latest.release'
  22. }