アプリケーションで Android YouTube プレーヤーを使用しようとしています: https://code.google.com/p/android-youtube-player/ しかし、電話で実行中にエラーが発生しました:
java.lang.NoClassDefFoundError: com.keyes.youtube.OpenYouTubePlayerActivity
ここに私が書いたものがあります:
String urlStr= "http://www.youtube.com/user/armadamusic ";
Uri uri = Uri.parse(urlStr);
Intent lVideoIntent = new Intent(null, Uri.parse("ytpl://"+uri), this, OpenYouTubePlayerActivity.class);
startActivity(lVideoIntent);
何が問題ですか?