【发布时间】:2018-08-21 07:02:14
【问题描述】:
我尝试调试我的应用程序,但出现错误:
找到多个文件,其独立于操作系统的路径为“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 在我的项目中。
【问题讨论】:
标签: android android-studio gradle