iOSMobility

Siri Integration in iOS

Introduction:  As we know that apple has launched Siri 5 years back, but only for user interaction not for iOS development point of view. Finally in iOS 10, apple launched Siri for development. Now developer can integrate Siri kit in his/her application to provide some predefined domains of services. Some example where you can use Siri […]

Manual TestingMobilityTechnology

Testing Mobile games

Testing  Mobile Games Games are available on number of devices such as computers, mobile handsets, TV etc. In this post, I am going to focus on testing the software games that runs on a smart phones. Planning of testing the game: When we plan to test a software application, we tend to think about the […]

MobilityTechnology

Ten Things must be done for an eCommerce Application

Ecommerce Architecture If you want to jump in ecommerce application you need to focus its architecture and design adaptively of application. Ecommerce application always categories in two parts native app and hybrid app. Hybrid App – In Hybrid app development always become very challenging task for developer due to less community, less documentation and less […]

AndroidConnected TVMedia & Entertainment

Playing different Videos with Exo-Player in Android TV

There are usually 3 types of videos while streaming in any Video Player. While working on Android TV we categorize these in Dash Videos HLS Videos (.m3u8 & .ts) Others (.mp4,.mpeg etc) We need different types of ExtractorRendererBuilder for playing different videos with Exo-Player. In this article I will be describing the difference between Other […]

Front End DevelopmentMobilityTechnology

Mobile First Approach

In this ever revolutionizing industry, rapid innovations keep us wondering how small enhancements makes our lives easier and smoother. Here is another innovation called Mobile First Approach. As all we know the beginning of web world was with websites being created just for desktops. Mobiles came in later and the websites created for desktops did not […]

Front End DevelopmentMobilityTechnology

Realtime Preview Direct from Photoshop to Mobile Device using Skala

Have you ever faced problems such as changed font, not enough contrast etc…after reflecting the design on a mobile device? Probably Yes! The traditional method of previewing the design on mobile devices is a very time consuming model however, It is an essential exercise but also very taxing. Fortunately, there are some awesome tools using […]

iOSMobilitySoftware development

Introduction to Core Spotlight Framework

Core Spotlight APIs introduced in iOS 9 that allows your content searchable to users. Core Spotlight Framework has a design different than NSUserActivity that also allows apps content to be Searchable. It follows a database-style design and allows you to provide more information about a searchable content. For more on NSUserActivity read Spotlight Search APIs […]

Connected TVManual TestingMedia & Entertainment

Things to be taken care while testing ROKU TV.

What is ROKU? Smart TV development has witnessed an extraordinary growth in the last few years. TV testing is an interesting market. ROKU is a streaming platform which helps enhance the power of an ordinary TV thereby transforming it into Smart TV, opening the doors to the outer world. It allows seamless Media transfer. ROKU […]

iOSMobilityTechnology

Swift For-Loops

In Swift 3.0 C-style for-loops will be removed. This will force developers to use a swift syntax for for-loops. So lets begin with swift for loops : Looping n times [code language=”objc”] // output is 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 for i in 0..<10 { print(i) } // or for […]

Services