About Account Kit What Is Passwordless Authentication? Passwordless authentication skips using a password for registration or login. Instead, user authentication is confirmed either with a one-time SMS verification code sent to the user’s phone or a one-time link to their email address. Why Use Passwordless Authentication? Seamless login and registration process for your users. Keeps…
January 26, 2017
Crash Reporting With Crashlytics
In Android, there is a high probability of your app crashing even after you have manually and automatically tested it. This can be due to factors such as incompatibility with different API levels, screen sizes, phone memory, hardware sensor availability, and vendors’ customization to suit their individual devices. Crashlytics will help you diagnose these problems.…
Quick Tip: Firebase Security Rules
Firebase Realtime Database security rules are how you secure your data from unauthorised users and protect your data structure. In this quick tip tutorial, I will explain how to configure your database security rules properly so that only authorised users have read or write access to data. I’ll also show you how to structure your…
Part 2: Sending Data With Retrofit 2 HTTP Client for Android
What Is Retrofit? RetrofitĀ is a type-safe HTTP client for Android and Java. Retrofit makes it easy to connect to a REST web service by translating the API into Java interfaces. In this tutorial, I’ll show you how to use one of the most popular and often recommended HTTP libraries available for Android. So Why Use…
Get Started With Retrofit 2 HTTP Client
What Is Retrofit? Retrofit is a type-safe HTTP client for Android and Java. Retrofit makes it easy to connect to a REST web service by translating the API into Java interfaces. In this tutorial, I’ll show you how to use one of most popular and often-recommended HTTP libraries available for Android. This powerful library makes…