我尝试调试我的应用程序,但出现错误:
找到了多个具有操作系统独立路径“lib/armeabi/libBugly.so”的文件
这是我Gradle的一部分:
android {
compileSdkVersion 26
dataBinding {
enabled = true
}
defaultConfig {
multiDexEnabled true
minSdkVersion 15
targetSdkVersion 26
versionCode 3
versionName "1.0"
ndk {
abiFilters "armeabi", "armeabi-v7a"
}
}
}
dependencies {
implementation 'com.tencent.bugly:crashreport_upgrade:latest.release'
implementation 'com.tencent.bugly:nativecrashreport:latest.release'
}
Android Studio 3.1.3,Gradle4.1在我的项目中。
在应用程序的build.gradle中添加一些内容:
android {
packagingOptions {
pickFirst 'lib/armeabi/libBugly.so'
}
}
然后,它就起作用了。