android 当我包含了exoplayer 2.8.4的依赖项时,为什么exoplayer 2.13.3会被下载?

ff29svar  于 2024-01-04  发布在  Android
关注(0)|答案(1)|浏览(144)

我想使用exoplayer 2.8.4,它将用于Toro库(autoplaying recycler view videos).然而,我总是在我的应用程序中得到一个exoplayer 2.13.3,这是相当bizzare,因为我没有包括在我的依赖项中.我尝试无效,甚至清除缓存,但仍然exoplayer 2.13.3是一个得到安装。我需要exoplayer 2.8.4的托罗正常工作。有人能提供一个解决方案是要做什么?
build.gradle(app)的代码

  1. apply plugin: 'com.android.application'
  2. apply plugin: 'com.google.firebase.crashlytics'
  3. apply plugin: 'com.google.gms.google-services'
  4. apply plugin: 'dagger.hilt.android.plugin'
  5. apply plugin: 'kotlin-android'
  6. apply plugin: 'kotlin-kapt'
  7. apply plugin: 'androidx.navigation.safeargs'
  8. android {
  9. compileSdkVersion 31
  10. defaultConfig {
  11. applicationId "com.mypost.bazigar"
  12. minSdkVersion 21
  13. targetSdkVersion 31
  14. versionCode 1
  15. versionName "1.1"
  16. buildConfigField 'String', 'BASE_URL', (project.findProperty("BASE_URL") ?: "")
  17. buildConfigField 'String', 'GIPHY_API', (project.findProperty("GIPHY_API") ?: "")
  18. testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
  19. vectorDrawables.useSupportLibrary = true
  20. }
  21. compileOptions {
  22. sourceCompatibility JavaVersion.VERSION_1_8
  23. targetCompatibility JavaVersion.VERSION_1_8
  24. }
  25. buildFeatures {
  26. viewBinding = true
  27. }
  28. buildTypes {
  29. release {
  30. lintOptions {
  31. checkReleaseBuilds false
  32. abortOnError false
  33. }
  34. minifyEnabled false
  35. proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
  36. //Other parameters
  37. debuggable false
  38. jniDebuggable false
  39. renderscriptDebuggable false
  40. pseudoLocalesEnabled false
  41. zipAlignEnabled true
  42. }
  43. packagingOptions {
  44. pickFirst '**/*.so'
  45. exclude 'META-INF/library_release.kotlin_module'
  46. }
  47. bundle {
  48. language {
  49. enableSplit = false
  50. }
  51. configurations.all {
  52. resolutionStrategy {
  53. force 'com.android.support:support-v4:27.1.0'
  54. }
  55. }
  56. }
  57. }
  58. }
  59. dependencies {
  60. implementation fileTree(include: ['*.jar', '*.aar'], dir: 'libs')
  61. implementation 'androidx.preference:preference:1.1.1'
  62. implementation 'androidx.annotation:annotation:1.2.0'
  63. implementation 'com.google.code.gson:gson:2.6.1'
  64. // okhttp3
  65. implementation 'com.squareup.okhttp3:okhttp:3.14.7'
  66. implementation 'com.squareup.okhttp3:logging-interceptor:4.9.0'
  67. implementation 'com.google.code.gson:gson:2.8.6'
  68. implementation 'androidx.multidex:multidex:2.0.1'
  69. implementation 'androidx.appcompat:appcompat:1.3.1'
  70. implementation 'com.google.android.material:material:1.4.0'
  71. implementation 'androidx.cardview:cardview:1.0.0'
  72. implementation 'androidx.constraintlayout:constraintlayout:2.1.0'
  73. implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.1.0'
  74. implementation 'de.hdodenhof:circleimageview:3.0.2'
  75. implementation 'com.github.bumptech.glide:glide:4.11.0'
  76. implementation 'com.google.firebase:firebase-auth:20.0.3'
  77. implementation 'com.google.firebase:firebase-database:19.7.0'
  78. implementation "com.github.zjupure:webpdecoder:2.0.4.11.0"
  79. api 'com.theartofdev.edmodo:android-image-cropper:2.8.0'
  80. implementation "com.hendraanggrian.appcompat:socialview:0.2"
  81. implementation "com.hendraanggrian.appcompat:socialview-commons:0.2"
  82. implementation 'com.google.firebase:firebase-storage:19.2.1'
  83. implementation 'androidx.legacy:legacy-support-v4:1.0.0'
  84. implementation 'com.github.shts:StoriesProgressView:3.0.0'
  85. // for image filter
  86. implementation 'com.github.zomato:androidphotofilters:1.0.2'
  87. // for Dexter M
  88. implementation 'com.karumi:dexter:4.1.0'
  89. //image compression
  90. implementation 'com.makeramen:roundedimageview:2.3.0'
  91. implementation 'com.iceteck.silicompressorr:silicompressor:2.2.4'
  92. // DO NOT CHANGE ANY DEPENDENCIES
  93. implementation "com.tencent.liteav:LiteAVSDK_Professional:8.5.10033"
  94. implementation 'com.github.adityagohad:HorizontalPicker:1.0.1'
  95. implementation 'org.florescu.android.rangeseekbar:rangeseekbar-library:0.3.0'
  96. implementation 'com.arthenica:mobile-ffmpeg-min:4.4.LTS'
  97. //
  98. implementation platform('com.google.firebase:firebase-bom:26.5.0')
  99. implementation 'com.google.firebase:firebase-auth-ktx'
  100. implementation 'com.google.firebase:firebase-messaging:22.0.0'
  101. implementation("androidx.browser:browser:1.3.0")
  102. implementation 'com.google.firebase:firebase-firestore-ktx:'
  103. //google location
  104. implementation 'com.google.android.gms:play-services-location:18.0.0'
  105. implementation 'org.jetbrains:annotations:15.0'
  106. testImplementation 'junit:junit:4.13.2'
  107. androidTestImplementation 'androidx.test.ext:junit:1.1.2'
  108. androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
  109. implementation 'com.github.hoanganhtuan95ptit:AutoPlayVideoRecyclerView:1.0.1'
  110. implementation 'com.sprylab.android.texturevideoview:texturevideoview:1.2.1'
  111. implementation 'com.danikula:videocache:2.7.0'
  112. implementation "im.ene.toro3:toro:3.6.2.2804"
  113. implementation "im.ene.toro3:toro-ext-exoplayer:3.6.2.2804"
  114. implementation 'com.google.android.exoplayer:exoplayer:2.8.4'
  115. implementation 'androidx.lifecycle:lifecycle-extensions:2.2.0'
  116. //Snapchat login
  117. implementation 'com.snapchat.kit.sdk:login:1.10.0'
  118. implementation 'com.snapchat.kit.sdk:core:1.10.0'
  119. //Network Dependencies
  120. implementation 'com.google.code.gson:gson:2.8.6'
  121. //dont update okhttp3 use 3.8.0 and 2.7.2 for retrofit
  122. implementation 'com.squareup.okhttp3:logging-interceptor:3.3.1'
  123. implementation 'com.squareup.okhttp3:okhttp:3.8.0'
  124. implementation 'com.squareup.retrofit2:retrofit:2.7.2'
  125. implementation 'com.squareup.retrofit2:converter-scalars:2.7.2'
  126. implementation 'com.squareup.retrofit2:converter-gson:2.7.2'
  127. //RxAndroid
  128. implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
  129. implementation 'io.reactivex.rxjava2:rxjava:2.2.18'
  130. //RxAndroid and Retrofit adapter
  131. implementation 'com.jakewharton.retrofit:retrofit2-rxjava2-adapter:1.0.0'
  132. //giphy
  133. implementation 'com.giphy.sdk:ui:2.1.4'
  134. //vertical viewpager
  135. implementation 'com.github.castorflex.verticalviewpager:library:19.0.1'
  136. //Dagger
  137. def hilt_version = "2.38.1"
  138. implementation "com.google.dagger:hilt-android:$hilt_version"
  139. kapt "com.google.dagger:hilt-android-compiler:$hilt_version"
  140. implementation "com.squareup.retrofit2:converter-moshi:2.7.2"
  141. //viewmodel
  142. implementation "androidx.lifecycle:lifecycle-viewmodel-ktx:2.3.1"
  143. //Coroutine
  144. implementation "org.jetbrains.kotlinx:kotlinx-coroutines-android:1.4.2"
  145. implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.4.3"
  146. implementation "androidx.activity:activity-ktx:1.3.1"
  147. implementation 'com.jakewharton.timber:timber:5.0.1'
  148. def nav_version = "2.3.5"
  149. implementation("androidx.navigation:navigation-fragment-ktx:$nav_version")
  150. implementation("androidx.navigation:navigation-ui-ktx:$nav_version")
  151. // Glide
  152. implementation 'com.github.bumptech.glide:glide:4.12.0'
  153. kapt 'com.github.bumptech.glide:compiler:4.12.0'
  154. }

字符串
build.gradle(项目)代码

  1. // Top-level build file where you can add configuration options common to all sub-projects/modules.
  2. buildscript {
  3. repositories {
  4. google()
  5. jcenter()
  6. flatDir {
  7. dirs 'src/main/jniLibs'
  8. dirs project(':app').file('libs')
  9. }
  10. }
  11. dependencies {
  12. classpath 'com.android.tools.build:gradle:7.0.3'
  13. classpath 'com.google.gms:google-services:4.3.10'
  14. classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
  15. classpath 'com.google.dagger:hilt-android-gradle-plugin:2.38.1'
  16. classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.5.31'
  17. def nav_version = "2.3.5"
  18. classpath("androidx.navigation:navigation-safe-args-gradle-plugin:$nav_version")
  19. // NOTE: Do not place your application dependencies here; they belong
  20. // in the individual module build.gradle files
  21. }
  22. }
  23. allprojects {
  24. repositories {
  25. google()
  26. jcenter()
  27. maven {url 'https://maven.google.com'}
  28. maven {url "https://storage.googleapis.com/snap-kit-build/maven"}
  29. maven {url "https://jitpack.io"}
  30. maven { url 'https://dl.bintray.com/umsdk/release' }
  31. maven { url 'https://4thline.org/m2' }
  32. maven { url "https://giphy.bintray.com/giphy-sdk"}
  33. }
  34. }
  35. task clean(type: Delete) {
  36. delete rootProject.buildDir
  37. }
  38. //ext {
  39. // compileSdkVersion = 25
  40. // buildToolsVersion = "28.0.3"
  41. // supportSdkVersion = "25.4.0"
  42. // minSdkVersion = 16
  43. // targetSdkVersion = 31
  44. // versionCode = 1
  45. // versionName = "v1.0"
  46. // proguard = true
  47. // rootPrj = "$projectDir/.."
  48. // ndkAbi = 'armeabi-v7a'
  49. // noffmpeg = false
  50. // noijkplay = false
  51. // aekit_version = '1.0.19-cloud'
  52. // liteavSdk="com.tencent.liteav:LiteAVSDK_Professional:latest.release"
  53. //}


先谢谢你了!

puruo6ea

puruo6ea1#

我使用strictly关键字来强制使用某个版本(在这里阅读更多信息)。
像这样使用它:

  1. implementation('com.google.android.exoplayer:exoplayer') {
  2. version {
  3. strictly '2.8.4'
  4. }
  5. }

字符串
环顾四周,我发现了force关键字,其中seems to do something similar(没有测试它)。

相关问题