访问被拒绝找到属性“ vendor.perf.iop_v3.enable”

时间:2018-10-04 14:01:50

标签: android

今天,我开始在我的应用程序中实现API,在应用程序加载时,它会显示活动(加载对话框)一秒钟。然后,以下消息开始在logcat中发送垃圾邮件:

10-04 15:54:33.094 27832-27832/nl.berris.roy.raspberrypiproject E/libc: Access denied finding property "vendor.perf.iop_v3.enable"
10-04 15:54:33.094 27832-27832/nl.berris.roy.raspberrypiproject E/libc: Access denied finding property "vendor.perf.iop_v3.enable.debug"

仅在所选应用程序上使用过滤器将Logcat设置为错误级别。这是给出的唯一输出。

此消息垃圾邮件持续5秒钟后,该应用将强制停止,不发送任何消息。我在Google上找不到任何相关信息。有谁知道为什么会这样显示?

我在gradle中的实现:

implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:support-v4:25.4.0'
implementation 'com.android.support:appcompat-v7:25.4.0'
implementation 'com.android.support:cardview-v7:25.4.0'
implementation 'com.android.support:recyclerview-v7:25.4.0'
implementation 'com.android.support:design:25.4.0'

implementation 'com.google.code.gson:gson:2.8.5'

implementation 'com.jakewharton:butterknife:8.8.1'
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1'

implementation 'com.afollestad.material-dialogs:core:0.9.4.3'

implementation ('com.squareup.retrofit2:retrofit:2.3.0') {
    exclude module: 'okhttp'
}
implementation 'com.squareup.okhttp3:okhttp:3.6.0'
implementation 'com.squareup.retrofit2:converter-gson:2.4.0'
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'

implementation 'com.google.code.gson:gson:2.8.2'

我正在使用Retrofit2进行api调用。我确实注释掉了API代码,但该应用程序仍然崩溃了。 api调用仍会异步运行。

目前仅在应用程序中发生的是一个打开片段的Activity。在此片段中是带有适配器的recyclerview。由于API调用失败,还会显示“失败”的MaterialDialog。一切都会加载,甚至是“失败”对话框。会在api调用之后创建的(失败)。然后几秒钟后,应用程序停止。并显示如上所示的错误消息。

0 个答案:

没有答案