In this tutorial, I will guide you on How to integrate SSL Certificate in your Android Application and Fixing SSL Handshake Exception on Android Devices below API level 20. We will use below TLS SOCKET FACTORY class. import android.content.Context;import java.io.IOException;import java.io.InputStream;import java.net.InetAddress;import java.net.Socket;import java.net.UnknownHostException;import java.security.KeyManagementException;import java.security.KeyStore;import java.security.KeyStoreException;import java.security.NoSuchAlgorithmException;import java.security.cert.Certificate;import java.security.cert.CertificateException;import java.security.cert.CertificateFactory;import javax.net.ssl.SSLContext;import javax.net.ssl.SSLSocket;import javax.net.ssl.SSLSocketFactory;import javax.net.ssl.TrustManagerFactory;public […]
How to develop Bothie Camera App in Android using Camera2 API in Android Kotlin Tutorial
In this tutorial You will learn How You can Develop Nokia’s Bothie like Camera Application for Android. We will be using Camera2 API in Android. How to final Application will work? Please Note that We Cannot Open two camera instances at the same time in Android. Why? Because there is no such way. Android Simply […]
Building Android MVP App in Kotlin using Rxjava2, Dagger2 ,Retrofit Tutorial
We will be using Kotlin Programming Language. In this tutorial, we will learn MVP (Model-View-Presenter) in Android using Kotlin and We will implement Dependency Injection (DI) using Dagger2 Library, we will also implement Retrofit2 using Kotlin in our MVP Android project. We will learn everything in the following sequence. We will learn about MVP Design […]
How to Start Building Google Play Android Instant Apps Tutorial
What are Android Instant Apps ? Google has introduced Native Android apps without installation, what does this mean ? it means that you can run any android application from google play store on your Android device without installing it from google play store. Like normal Android apps which you have to download from google play […]
How to Integrate Firebase Native Advanced Ads on Android using Kotlin Tutorial
What are Firebase Native Ads Advanced in Google admob ? AdMob Native Advanced Ads allows you to create customized promotions that matches your application theme. AdMob Native Advanced Ads SDK send the advertisement segments specifically to your application, and you render them in your local application code, conveying an awesome user experience. Developer have freedom to […]
How to Develop Android Image Gallery App using Kotlin – Tutorial with Complete Source Code
In this tutorial, we will develop a complete Android Photo Gallery application in Kotlin. I will share the source code of my gallery application from splash screen till the end. we will also cover following topics in Kotlin. How to implement Singleton pattern in Kotlin. How to pass a class object from one activity to […]
Firebase Cloud Messaging Push Notifications Android tutorial
In this tutorial I will explain how you can integrate Firebase Push Notification SDK in your Android Application and how to send push notification from Firebase console and from Application Server to your Android Application. Create project in firebase console FireBase console Link . Your project ID while creating project will be applicationId in build.gradle. Download google-service.json […]
How To Send Firebase Push Notification From App Server Tutorial
How to send Firebase push notification to your Android or iOS client from application server example. I will give you an example of How to send firebase push notification to Android or iOS devices from PHP, Java, C# or using Rest Client. Here is Rest API example which we will use to send notifications to our client application. You can implement […]