I have changed my dependencies to import com.android.support:appcompat-v7:23.0.1 and com.android.support:design:23.0.1 but it\'s not fix the error. The youtube Fragment show
Try using
mYoutubePlayerFragment = YouTubePlayerSupportFragment.newInstance();
instead of
mYoutubePlayerFragment = new YouTubePlayerSupportFragment();
In your build.gradle file, instead of
compile project(':YouTubeAndroidPlayerApi')
[replace it with] compile files('libs/YouTubeAndroidPlayerApi.jar')
Make sure you have copied the jar file in to the libs folder.