According to Google’s documentations “Google Cloud Messaging (GCM) is a free service that enables developers to send messages between servers and client apps. This includes downstream messages from servers to client apps, and upstream messages from client apps to servers”. The GCM service handles all aspects of queueing of messages and delivery to the target Android application running on the target device.
Instead of getting notified about others messages here is a good spybubble review click here and get the app that makes a video of everything they do on their screen. Did they just download that new social media app to chat with their ex? Continue Reading →
In todays world we are seeing lot of applications having video streaming or demo videos which will give instruction about how your application works. Storing video inside your project will increase apk size, instead of that we can store video on Youtube and stream it. Make a video with this editing software at makewebvideo.com/en/make/3d-text-intro-video, and then link your video, which’ll lead the user to Youtube.
Today we will learn how to stream youtube video in your android app.
first step we need to do is obtaining Google API Key, follow this steps to obtain Google API Key.
- Get SHA-1 fingerprint from your machine using java Keytool. Execute following command in your cmd/terminal.
On Windows
|
keytool -list -v -keystore "%USERPROFILE%.androiddebug.keystore" -alias androiddebugkey -storepass android -keypass android |
On Linux/MAC
|
keytool -list -v -keystore ~/.android/debug.keystore -alias androiddebugkey -storepass android -keypass android |
Continue Reading →