NoClassDefFoundError - Android 2.3.X

后端 未结 5 347
闹比i
闹比i 2021-01-07 09:40

I have a Task defined in a class. Fatal exception \"NoClassDefFoundError\" is happening on following line

MyCuteTask myTask = new MyCuteTask(equations)
         


        
5条回答
  •  走了就别回头了
    2021-01-07 10:37

    Asynctask was added in API level 3. Please verify one by checking the same code with API 3. If it disappears, there is your problem

提交回复
热议问题