How to Add SSL Certificate in Android Application and Solving SSL Handshake Exception

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 […]

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 […]

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 […]

Begin typing your search term above and press enter to search. Press ESC to cancel.

Back To Top

Contact Us