load: id=gralloc != hmi->id=gralloc

两盒软妹~` 提交于 2019-12-08 03:24:21

问题


I want use Material Design in my App, so I change AndroidManifest.xml just like:

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.zdr.umarket" >
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
<application
    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:supportsRtl="true"
    android:theme="@android:style/Theme.Material.Light" >
    <activity android:name=".MainActivity" >
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

but when I running, Android Studio show:

05-07 14:33:01.478 21994-22007/com.zdr.umarket E/HAL: load: id=gralloc != hmi->id=gralloc
05-07 14:33:01.496 21994-21994/com.zdr.umarket W/System: ClassLoader referenced unknown path: /data/app/com.zdr.umarket-1/lib/arm64
05-07 14:33:01.517 21994-21994/com.zdr.umarket I/HwCust: Constructor found for class android.app.HwCustHwWallpaperManagerImpl

How do I?

来源:https://stackoverflow.com/questions/43828725/load-id-gralloc-hmi-id-gralloc

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!