Intent intent = new Intent(My.this, target.class);
                   startActivity(intent);  //호출하면 죽습니다

이렇게 target 엑티비티를 호출하려구하면

앱이 죽습니다

이럴경우 어디를 살펴봐야될까요?


디버깅을해보면

target 클래스의 onCreate 메소드에 브레이크포인트를 설정해놔도

startActivity 호출하면 target 으로넘어가지도못하고

source not found 가나옵니다

문제가있는 위치를알아야될텐데

어떻게하면 문제점을 알수있을까요