Intent생성이 잘못되었습니다. 레퍼런스 문서를 보시면 new Intent(String) 에서 주는 String은 action값을 지정해주는것을 확인하실수 있을겁니다. 근데 지금 원하신는 것은 액션을 지정하는 것이 아니라 컴포넌트를 지정하는 것이기 때문에
Intent intet = new Intent();
intent.setClassName("com.example.notecompressionservice", "com.example.notecompressionservice.CompressNote");
와 같이 앞에는 패키지 문자열, 뒤에는 클래스 문자열을 넣어서 만드시면 됩니다.