我正在尝试使用 Youtube API 在 android 应用程序中嵌入 youtube 视频。我导入了 jar,将其添加到我的构建路径中,并将 YouTubePlayerView 添加到我的主视图中。在 onCreate 中,我的密钥有以下代码,其中 xxxx 是:
YoutubePlayerView ytpv = (YouTubePlayerView) findViewById(R.id.youtubeplayer);
ytpv.initialize("xxxx", this);
当我运行应用程序时,出现异常:
java.lang.SecurityException: Not allowed to bind to service Intent { act=com.google.android.youtube.api.service.START }
当我尝试运行 api 附带的同一个应用程序时,它似乎工作正常。有任何想法吗?