YouTube Api for android exception “service_missing”

后端 未结 2 2152
盖世英雄少女心
盖世英雄少女心 2021-02-19 19:48

I want to play you tube video in my android application

I got exception while youtube initialization like \"service_missing\".

I write following code,

         


        
相关标签:
2条回答
  • 2021-02-19 20:23

    As the API documentation for the Youtube API states:

    YouTubeInitializationResult.SERVICE_MISSING
    The YouTube API service is missing on this device.

    You'll need to install the Youtube app into the emulator to make it work.

    0 讨论(0)
  • 2021-02-19 20:34

    The issue with Android 11 is the os is restricting access to other apps. https://developer.android.com/training/basics/intents/package-visibility

    Add the following to manifest tag in AndroidManifest to fix YouTube issue:

    <queries>
       <intent>
         <action android:name="com.google.android.youtube.api.service.START" />
       </intent>
    </queries>```
    
    0 讨论(0)
提交回复
热议问题