Sunday, 18 October 2020

How to get wifi speed in android programmatically

 To get Wifi or Internet connection speed programmatically in android so let's start how to get it.



First you have to add permissions in Menifest.xml file like below

Friday, 9 October 2020

Call Recording in Android 10 Q

 Call Recording in Android 10 is not working without using Accessibility Service ,So here i define you how it is working.




First you have to add permissions in Menifest.xml file like below.

Sunday, 4 October 2020

Device IMEI Number in Android 10 Q

 How to get Device IMEI Number ,below Android Version 10 it is easily get Device imei number nut After Android 10 version Android is not support to get device imei number , So using this below code we will get Device IMEI Number after Android 10

Give Permission in Menifest.xml file 


<uses-permission android:name="android.permission.READ_PHONE_STATE" />

<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION">
</uses-permission>

<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION">
</uses-permission>

Wednesday, 30 September 2020

PayPal Integration

Here i show you how to make PayPal Integration in android application.




Add Paypal sdk library in build.gradle(Module: app) file in your application.

Sunday, 27 September 2020

Enable Window Full Screen in Android Studio

 Here is the example to make window full screen , so lets see code below here how its works

Window full screen code is gone in your .java file code in the MainActivity.java

Friday, 25 September 2020

Android SQLite CRUD Operations










Hello All,

Here i give you example of Android SQLite CRUD operations Code.

C- Create

R - Read

U- Update

D - Delete

See in Code how its doing from coding in Android Studio.

Happy Coding

SQLite CRUD Operations Source Code

Snackbar in Kotlin

How to show snackbar in place of toast message , below is the code for showing snackbar in kotlin. Below code is put in Utils.kt  (common fi...