Skip to main content

Facebook Key Generation

Windows Only


keytool -exportcert -alias androiddebugkey -keystore "C:\Users\Lenovo\.android\debug.keystore" | "C:\Users\Lenovo\Downloads\openssl-0.9.8k_X64(1)\bin\openssl" sha1 -binary | "C:\Users\Lenovo\Downloads\openssl-0.9.8k_X64(1)\bin\openssl" base64

Comments

Popular posts from this blog

Customized Alert Dialog box and Handling Clicklistener

Hello Geeks ,  It's time to learn new little bit new stuff about the android alert dialog box. It is not so new for the profession engineers but it can help a lot of new beginners who want to improve their knowledge and speed up their productivity. So let's start Just make a method in your utility class and start using.  here is an example //Made: By Umesh Jangid public static void askForInput (Context context , String title , String message , String positiveButtonText , String negativeButtonText , boolean showOnlyOneButton , final AlertDialogCallback<String> callback) { AlertDialog.Builder alert = new AlertDialog.Builder(context) ; alert.setTitle(title) ; alert.setIcon(R.mipmap.ic_launcher) ; alert.setMessage(message) ; alert.setPositiveButton(positiveButtonText != null ? positiveButtonText : "Ok" , new DialogInterface.OnClickListener() { public void onClick (DialogInterface dialog , int whichButton) { callbac...

Bye build.gradle

Hello Geeks, It’s been a while since  Gradle  released support for  Kotlin  scripts. We have been writing  Gradle  script in a language called  Groovy  since ages. Let’s be honest, We all know that  Groovy  sucks! Half of the times I have been like this when there’s an issue Why does it needs -  No Auto-Completion No Content Assist No Navigation to Source Don’t know what to write and how to write Finally, We don’t have to learn Groovy for  Gradle  scripts. Now we can write our build scripts in  Kotlin .   Kotlin  script overcomes almost all the cons of  Groovy Added advantages over groovy (Old Pattern) Auto-Completion😎 Content Assist😍 Navigation to Source😱 Kotlin Extensions support😘 Errors at compile time instead of runtime💪 Sometimes it can be a bit messy to rewrite  gradle.build  into  gradle.build.kts  files, especially when all its cache is malfunctioning dur...

Speed Up Android Development

Hello Coders!  Thanks to being here again! The evolution of software development is so fast. Mobile app development is one of the fast-growing part of this world. Mobile app developers always have to follow up all changes to catch up the world and be updated. Mobile apps are living organisms and should to be improved due to end users needs and platform changes. I mean using time effectively with the word fast. The articles below will help you to shorten the time for the process of coding. 1. Shortcuts You will have fun with coding when you use shortcuts. Try to do everything with the keyboard. Exactly this is the first and the most important one. https://www.jetbrains.com/idea/docs/IntelliJIDEA_ReferenceCard_Mac.pdf 2. Live Templates Add your most used code blocks to Live Templates then get rid of the time you spend every time https://www.bignerdranch.com/blog/android-studio-live-templates/ 3. Genymotion: Use Genymotion instead of Android Emulato...