Publishing your Android app to Play Store

How to Publish app to google play Have you seen new updates in Google Play Store for uploading your app? Nothing to worry! This blog gives insight on changes in the uploading process and publishing your Android app to the Play Store. I will be driving through the detailed steps that you would need for … Read more

Mobile Automation Testing using APPIUM tool

As everyone knows that mobile usage is growing drastically. Tons of new mobile applications are coming out daily. While serving the development and testing needs of these companies who outsource development to Cuelogic, we use automation with respect to manual testing. Please find below few pointers that might help you upgrade yourself to automate your testing efforts. … Read more

Deep Linking in Android

Deep-Linking-in-Android

Deep Linking is a methodology for launching a native mobile application via a link. It consists of a unique URI (Uniform Resource Identifier) that links or matches to a specific location within a mobile app. For example “https://www.cuelogic.com/registration?cd=23424” is a url that contains a key ‘cd’ with a value 23424 which is a user registration … Read more

Robolectric : Unit Test Your Android Application.

“If you don’t care about quality, you can meet any other requirement.” – Gerald M. Weinberg Need Of Android Application Testing :The word “Testing” is a large umbrella, and is usually better understood when you break it down to specific types of testing. Here our focus will be on Android application unit testing.We all know the … Read more

OpenCV – Contour detection in Android

What is OpenCV ? OpenCV is a C library designed to help with computer vision programs. It provides many inbuilt functions that are mainly aimed at real time image processing. It has several hundreds of image processing and computer vision algorithms, which make developing advanced computer vision applications easy and efficient. It includes image filtering, image transformations, … Read more

Using FrameLayout for designing XML Layouts in Android.

In Android app development, there are many Layout Managers which help you arrange(layout) UI elements on the screen. This eases the development process of apps while keeping the layout and logic completely separate. For e.g., LinearLayout arranges elements side by side either horizontally or vertically. RelativeLayout helps you arrange your UI elements based on specific … Read more

Creating/Reading an Excel file in Android.

android_30103_l

Its easy to store records in database via android application. But what’s the use of it when we cannot get the records on a sheet of paper. Here’s a simple and systematic solution to get your records in an excel sheet in Android. Excel Sheet accessing through android application in very few lines of code. … Read more