Android Generating SHA1 key || Android keystore sha1 fingerprint

Generate SHA1 key : A simple way to generate SHA1 key with in android studio, rather than generating it in command prompt. This SHA1 fingerprint is used in many tools like firebase project creation, google api access and many more services. Generating SHA1 key in android studio is a explained clearly in the video link … Read more

Android Send SMS Using Intent

  Android Send SMS :   Android send sms, Sending SMS using Android Intent   1. Fetch mobile number for which message to be sent Uri uri = Uri.parse(“smsto:” + “9876543210”);   2. Add intent using which sms is sent Intent smsIntent = new Intent(Intent.ACTION_SENDTO, uri);   3. Add message content here smsIntent.putExtra(“sms_body”, “Hi,How are … Read more

Get video code from Youtube Link || Youtube video code

  Want to fetch the Youtube video code from the youtube url to play youtube video? Integrate youtube video ??? Then its the right place using this method you can fetch the video code out from entire youtube link   Android youtube tutorial      MVk342D7oMQ   is the video code for the above video url … Read more

Android string replace by another string

  Android string replace ??   Some time’s we need to change some part of the string with other string then we can do this by using a method called android string replace which does the work of replace the string with what we want to be replaced.   String android = “Welcome to AndroidCoding.in”; … Read more

Show Buttons
Hide Buttons