添加Github音频库后无法合并Dex

时间:2018-04-29 19:44:54

标签: android android-studio dependencies audio-recording

我看了其他问题,但没有人有我的问题,所以这是我的: 在添加Github-audio-library之后,即使在我设置" multidex = true"之后,合并索引错误也会出现,这只会在添加音频库之后发生。 但是在我删除了com.android.support:appcompat-v7:27.1.1'之后,错误就消失了,所以我无法同时使用它们,否则错误就会显示出来。

问题出在这两个工具之间:

=>实施' com.android.support:appcompat-v7:27.1.1'

=>实施' com.github.axet:android-audio-library:1.0.88'

如何解决:

dependencies {

  implementation fileTree(include: ['*.jar'], dir: 'libs')
     ////noinspection GradleCompatible
  implementation 'com.android.support:appcompat-v7:27.1.1'
  implementation 'com.android.support.constraint:constraint-layout:1.1.0'
  testImplementation 'junit:junit:4.12'
  androidTestImplementation 'com.android.support.test:runner:1.0.1'
  androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1'
  implementation 'com.google.android.gms:play-services-ads:15.0.0'
  implementation 'com.github.axet:android-audio-library:1.0.88'

} 

0 个答案:

没有答案