build.gradle 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. apply plugin: 'com.android.library'
  2. apply from: '../build_cust.gradle'
  3. android {
  4. compileSdkVersion 30
  5. buildToolsVersion "30.0.3"
  6. defaultConfig {
  7. minSdkVersion 19
  8. targetSdkVersion 30
  9. versionCode 1
  10. versionName "1.0"
  11. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  12. consumerProguardFiles "consumer-rules.pro"
  13. manifestPlaceholders = [
  14. "YouYi_GameId": ro.youYiGameId,
  15. "YouYi_AppKey": ro.youYiAppKey
  16. ]
  17. }
  18. buildTypes {
  19. release {
  20. minifyEnabled false
  21. proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
  22. }
  23. }
  24. compileOptions {
  25. sourceCompatibility JavaVersion.VERSION_1_8
  26. targetCompatibility JavaVersion.VERSION_1_8
  27. }
  28. }
  29. dependencies {
  30. api fileTree(dir: "libs", include: ["*.jar"])
  31. // api fileTree(dir: 'libs', include: ['*.aar'])
  32. api project(":lebian")
  33. api 'com.aliyun.ams:alicloud-android-httpdns:2.0.2'
  34. implementation 'androidx.recyclerview:recyclerview:1.1.0'
  35. implementation 'androidx.appcompat:appcompat:1.2.0'
  36. implementation 'com.github.bumptech.glide:glide:4.11.0'
  37. implementation 'com.tencent.mm.opensdk:wechat-sdk-android-without-mta:+'
  38. implementation(name: 'ijkplayer-exo-release', ext: 'aar')
  39. implementation(name: 'ijkplayer-java-release', ext: 'aar')
  40. implementation(name: 'ijkplayer-nativelibs-release', ext: 'aar')
  41. implementation(name: 'msa_mdid_1.0.13', ext: 'aar')
  42. implementation(name: 'opuscodec-v1.2.1.2', ext: 'aar')
  43. implementation(name: 'rtmp-release', ext: 'aar')
  44. implementation(name: 'yunGame-release', ext: 'aar')
  45. // implementation(name: 'yunUI-release', ext: 'aar')
  46. implementation(name: 'yysdk_1.6.5', ext: 'aar')
  47. implementation(name: 'zmcaplayer-release', ext: 'aar')
  48. implementation project(":yunUI")
  49. }