在我的flutter应用程序中显示YouTube视频是否合法?



我发现这个插件youtube_player_flutter,但我想知道它是否合法在我深入研究它之前,我需要知道它是否合法,appstore, Google play是否会拒绝我的应用。

YoutubePlayerController _controller = YoutubePlayerController(
initialVideoId: 'iLnmTe5Q2Qw',
flags: YoutubePlayerFlags(
autoPlay: true,
mute: true,
),
);
YoutubePlayer(
controller: _controller,
showVideoProgressIndicator: true,
videoProgressIndicatorColor: Colors.amber,
progressColors: ProgressColors(
playedColor: Colors.amber,
handleColor: Colors.amberAccent,
),
onReady () {
_controller.addListener(listener);
},
),

任何有答案的人都会很感激

几个可以使用包播放的链接。我用过它,并在App &玩店。但是如果你允许搜索和播放以及更多像Youtube这样的功能,你的应用很有可能被Google/Apple拒绝(就像评论中提到的那样)。

最新更新