我尝试调试应用程序,但出现错误:
使用操作系统独立路径'lib / armeabi / libBugly.so'找到多个文件
这是我成功的一部分:
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。
答案 0 :(得分:0)
在应用程序的 build.gradle 中添加一些内容:
android {
packagingOptions {
pickFirst 'lib/armeabi/libBugly.so'
}
}
然后,它起作用。