我在Android OS 7.1牛轧糖上运行我的应用程序时遇到以下错误。
E/libEGL:验证显示:99错误3008(EGL错误显示)[04 - 21 10:19:18.788 4410:小行星4622
主机连接::get()已建立新的主机连接0x7db835ad6200,tid 4622
在build.gradle
中,我使用vectorDrawables.useSupportLibrary = true
和以下依赖项:
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
exclude group: 'com.android.support',
module: 'support-annotations'
})
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support.constraint:constraint-layout:1.0.2'
testCompile 'junit:junit:4.12'
compile 'com.google.android.gms:play-services-location:11.6.0'
compile 'com.google.android.gms:play-services-places:11.6.0'
compile project(':library')
}
在构建类型中,我有:
buildTypes {
release {
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
对于项目build.gradle
,我有:
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
classpath 'com.google.gms:google-services:3.1.1'
}
在我的用户界面中,我正在使用imageview,在另一个imageview之上。这个问题出现在avd和real设备上。
- 以前有人遇到过这个问题吗?
- 发生此错误的原因是什么?
- 解决这个问题的办法是什么?
1条答案
按热度按时间pxyaymoc1#
这是
ChatGPT
对您的问题的回答,它可能是错误的: