Month: August 2016

Set focus modes in OpenCV using JavaCameraView for Android

Setting focus mode in Android using JavaCameraView class of OpenCV for Android is pretty easy. You just need to create a class that extends from JavaCameraView, get the camera parameters and set the focus mode in the camera parameter and set those parameters in mCamera variable. OpenCV for Android How to set Autofocus and other …

Set focus modes in OpenCV using JavaCameraView for Android Read More »

Android copy files from assets to datafile in Internal Storage.

Copying files from assets folder to internal storage in Android is not a difficult task. It consists of three parts: Assets folder directory structure How to copy files from assets to Internal Storage Android –  First make sure the assets folder is in the correct location. The correct location of Assets folder in Android is …

Android copy files from assets to datafile in Internal Storage. Read More »

How to get the SHA1 fingerprint certificate for release and debug in Android Studio?

There are two types of fingerprint certificates in Android, one is Debug and the other is Release. You need to sign your app in Debug mode just for testing purposes. Do not publish apps that are singed in debug mode. You need to sign your app with Release certificate before publishing. Here’s how to get …

How to get the SHA1 fingerprint certificate for release and debug in Android Studio? Read More »

How to change/rename company domain and package name in Android Studio

Usually package name in Android Studio resembles something like this – com.vishal.someapp.There are different ways to rename package name for your app in Android Studio. It depends on which part of the package name you want to rename. If you just want to rename the last part, (i.e someapp in the example above), it is …

How to change/rename company domain and package name in Android Studio Read More »