Security exception: uid does not have android.permission.MANAGE_APP_OPS_MODES.

If for some reason you got the following exception, “java.lang.SecurityException: uid 2000 does not have android.permission.MANAGE_APP_OPS_MODES” Then … Read more

How to create Runnable Thread in Android JAVA ?

Runnable in android / JAVA is an interface which needs to be implemented if we want run … Read more

How to use Android Log API’s in Kotlin to print logs ?

Kotlin initializes the variables in different way than JAVA hence if you are too much used to … Read more

How to assign IDC File for Input Device in Android ?

As we have seen in “How to identify which IDC file used by Input Device in Android … Read more

How to identify which IDC file used by Input Device in Android ?

Input device configuration files (.idc files) contain device-specific configuration properties that affect the behavior of input devices. … Read more

adb shell screencap ( Take Screenshot in Android using ADB Shell )

If you want to take screen capture of something happening on your phone screen and save it … Read more

How to Remount Android Vendor Partition as Read Write ?

Android’s Vendor partition is by default mounted as read only, but if we need to modify some … Read more

How to remount android system partition as read/write or read only ?

Android’s system partition is by default mounted as read only, but if you are looking to modify … Read more

Understanding Android Touch Event , onTouchEvent ( Motion Event )

When we just touched the touchscreen and printed the logs in application using “onTouchEvent” it printed following … Read more

How to get Android Display Resolution using adb shell command ?

Display resolution indicates the height and width of the physical display which the android device is using. … Read more