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

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...

10 Best Things for Android Development in 2020

2020 is a crazy year for all of us, for sure. In this article, I tried to remember what happened in 2020 in Android development and came up with these 10 main things. #6 is the important one.                                          Refer -  https://vladsonkin.com/  #1 View Binding View Binding makes our work with views easier, and it brings advantages over the standard  findViewById()  and other alternative solutions. View Binding generates a binding class for each XML layout, and the instance contains references to all the views with the ID. Column 1 ButterKnife Kotlin Synthetics Data Binding findViewById View Binding Fast  *  * Null-safe Compile-time safe  ** View Binding  takes the best parts of the other solutions and avoids their drawbacks.  And it’s more important now since the popular  Kotlin Synthetics  are deprecated in...

Programming Languages Used For Artificial Intelligence

The 5 best programming languages for AI development Are you one of the AI aspirants who is confused on which programming language to pick for your next project? Here's a rundown of the best options If so, you've come to the right place, as here we are going to look at the best 4 programming languages for AI development. Artificial Intelligence is a huge field. With so much to cover, it is really hard to refer one single programming language. Clearly, there are many programming languages that can be used, but not every programming language offers you the best value of your time and effort. And there's no authoritative answer as to which programming language you should use for AI project. Python Python is one of the most widely used programming languages in the AI field of Artificial Intelligence thanks to its simplicity. It can seamlessly be used with the data structures and other frequently used AI algorithms. The choice of Python for AI projec...