我想调用另一个项目的类。我将它添加到构建路径中,并在清单文件中声明了该类,但是当我调用它时,它给了我一个no class found
错误。我是从意图中调用它的。
Intent intent = new Intent(getApplicationContext(), org.coolreader.CoolReader.class);
intent.putExtra("path", adapter.getItem(position).getPath());
startActivity(intent);