Friday, April 6, 2018

Monday, February 5, 2018

Solution for Skype cannot connect, only the blue connection progress indicator is spinning

If you have net connection and other apps like the browser work then try signing out completely from skype and sign in again.

Wednesday, January 10, 2018

Tuesday, January 9, 2018

How to get old Skype (classic) back instead of the new ugly one

Do you also hate the look of the new Skype? Despair not, because you can get the old appearance back easily.

Uninstall the new Skype then go to Skype download page, but don't just press the Get Skype button, click the little arrow on it. This shows the various versions and you can choose Skype classic which is the old, familiar looking Skype.

Much better.

Tuesday, December 26, 2017

add youtube data api dependencies to android studio

Add the following to your build.gradle file:

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.apis:google-api-services-youtube:v3-rev189-1.23.0'
}

Wednesday, December 20, 2017

android youtube api initialization failure


imported lib like this -> copy YouTubeAndroidPlayerApi.jar into /app/libs folder -> open Project structure and instead of Module dependency I chose Jar dependency and from libs folder selected YouTubeAndroidPlayerApi.jar. After that gradle completed and now in build.gradle is compile files('libs/YouTubeAndroidPlayerApi.jar')and everything works.
As mike already mentioned in gradle should be compile files('libs/YouTubeAndroidPlayerApi.jar') instead of compile project(':YouTubeAndroidPlayerApi').

https://stackoverflow.com/a/45495225