안녕하세요 제목과같이 패키지를 intnet로 호출할때

android.content.ActivityNotFoundException: Unable to find explicit activity class {클래스명}  have you declared this activity in your AndroidManifest.xml

이렇게 오류 나옵니다.

 

겔럭시2 HD에서는 정상적으로 되는데 겔럭스U에서는 위와같이 오류가나네요...

 

Intent intent = new Intent(A.this, com.test.B.class);
        intent.setClassName("com.test", "com.test.B");
        startActivity(intent);

 

이런식으로 호출하고있습니다.

 

아시는분 답변부탁드려요...