Reputation: 1
The Android App does using YoutubeBaseActivity
does not play video.
The Log is same with the title.
"Cannot load modern controls UI. Upgrade to the latest version of the Android YouTube API."
I think it is because I have updated the Youtube App. Videos have played with no problem after I deleted the Youtube App Updates.
But this is not the solution. Many people installed this app from Google Play Market and are using it. Is it a problem of Google not supporting newest Android Youtube API? Should I wait for API updates?
Upvotes: 0
Views: 1073
Reputation: 1
I found the answer myself!
The answer is that "Delete the Youtube video and upload it again."
I tried to install the Youtube API sample app. And found that some videos are well done but some are not. I assume that the process of uploading videos has changed (just my opinion).
Thank you for all your attension and answers.
Upvotes: 0
Reputation: 2962
You should use gradle for your dependencies. This is the last version:
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.apis:google-api-services-youtube:v3-rev171-1.20.0'
}
Upvotes: 0