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...
Enrolling into the Apple Developer Program as an individual LAST MODIFIED:   27 MAY, 2020 CATEGORIES:   ACHIEVE CLIENT APP All businesses who wish to publish an iOS app are required to enroll in the Apple Developer program. This article will describe the process of enrolling in the Apple Developer Program as an individual.To enroll in the Apple Developer Program, you will need to pay a $99 (USD) annual publisher fee – charged by Apple. This fee is the same whether you enroll as an individual or as an organization, and it must be paid on a yearly basis. The following must be completed to successfully enroll in the Apple Developer Program: Create an Apple ID. If you already have an Apple ID, you do not need to complete this step. Please note that creating an Apple ID is not the same as creating an Apple Developer account. Follow this link to learn how to  create Your Apple ID . Disable two-step verification on your Apple account and enable two-factor authentication. Follow ...