这个问题的解决办法是什么?尝试了许多解决方案,但都失败了。
dependencies
{
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation files('libs/renderscript-v8.jar')
implementation files('libs/picasso-2.5.2.jar')
implementation 'com.viewpagerindicator:library:2.4.1'
implementation 'me.relex:circleindicator:1.2.2@aar'
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'com.github.JakeWharton:ViewPagerIndicator:2.4.1@aar'
implementation 'com.nostra13.universalimageloader:universal-image-
loader:1.9.5'
implementation 'com.squareup.okhttp:okhttp:2.0.0'
implementation 'com.google.okhttp:okhttp:20120626'
implementation 'it.sephiroth.android.library.targettooltip:target-tooltip-
library:1.3.15'
implementation 'com.jakewharton.threetenabp:threetenabp:1.0.5'
implementation 'com.google.android.gms:play-services-maps:15.0.1'
testImplementation 'junit:junit:4.12'
implementation 'com.facebook.android:facebook-android-sdk:4.33.0'这就是错误。
程序类型已经出现: android.support.v4.app.BackStackRecord$Op消息{kind=ERROR,text=Program类型已经存在: android.support.v4.app.BackStackRecord$Op,sources=Unknown源文件,工具name=Optional.of(D8)}}
发布于 2018-06-21 10:43:16
在你的例子中,它可能是由'com.github.JakeWharton:ViewPagerIndicator:2.4.1@aar‘引起的
我也有同样的问题。实际上,这个库本身已经很老了,GitHub已经被存档了,所以我用https://github.com/vivchar/ViewPagerIndicator替换了它,但是您可以在例如android-arassal.com上找到很多类似的库。
https://stackoverflow.com/questions/50718005
复制相似问题