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

Viewed 36085

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 :)

2 Answers

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>
Related