Design a site like this with WordPress.com
Get started

Picasso Library in Android

Picasso is a widely used library in Android Studio. It helps to load images of various formats. Images can be edited, resized and cropped using Picasso. It is named after the famous Spanish painter Pablo Picasso. Steps to use Picasso: 1. In build.gradle, add implementation ‘com.squareup.picasso:picasso:2.5.2’ 2. In Manifest file, add <users-permission android:name=”android.permission. INTERNET”/> 3.Continue reading “Picasso Library in Android”

Knowing JIT

Just-In-Time Compiler is a special type of compiler, or component of an environment that combines the power of compilation and interpretation to boost performance. It is a mid-way between compiling and interpreting. Although the term was coined by James Gosling later, John McCarthy and Ken Thompson are the pioneers in developing this technology. Functionality AContinue reading “Knowing JIT”