Nicks
Nicks

Reputation: 3502

Getting Warning Didn't find class "com.qualcomm.qti.Performance"

My app is working fine but I am getting this warning every time when I test my app in my physical device. I am not using any such third party library which can cause this type of issue. My LogCat view.

E/BoostFramework: BoostFramework() : Exception_1 = java.lang.ClassNotFoundException: Didn't find class "com.qualcomm.qti.Performance" on path: DexPathList[[],nativeLibraryDirectories=[/system/lib64, /vendor/lib64]]

Is this issue will cause some serious issue in future or not. Thanks in Advance :)

Upvotes: 33

Views: 38576

Answers (2)

Ahtisham
Ahtisham

Reputation: 1

In my case I'm making wallpaper app I add service in manifest file my problem is solved.

    <service
        android:name="com.a.b.c.myapplication.WallPaperService.VideoService"
        android:enabled="true"
        android:label="wallpaper"
        android:permission="android.permission.BIND_WALLPAPER">
        <intent-filter>
            <action android:name="android.service.wallpaper.WallpaperService" />
        </intent-filter>

        <meta-data
            android:name="android.service.wallpaper"
            android:resource="@xml/clock_wallpaper" />
    </service>

Upvotes: 0

Vladyslav Matviienko
Vladyslav Matviienko

Reputation: 10881

This is nothing you can do about it. It is the system level log of your device's firmware, which was not removed by the device manufacturers.

It won't hurt, and it is shown to you by the accident. Just don't pay any attention to it. It doesn't have to be resolved.

Upvotes: 69

Related Questions