我在不同的项目中有两个课程。
我正在导入具有我需要的类的项目。现在,我没有错误。
该项目知道那个类,我什至从那个类中制作了一个对象,但是当我尝试运行它时,它与"NoClassFoundError"
.
我该如何解决?
import com.dmg.pixelservice.core.*;
import android.app.Activity;
import android.os.Bundle;
public class show extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Pixel pixel = new Pixel();
pixel.doIt(this,"fd7ccf36-3f85-11e1-8671-40409e0f44a1",true);
setContentView(R.layout.main);
}
}
当我调试时,我可以看到当我尝试执行 Pixel pixel = new Pixel(); 时它崩溃了
请帮忙。