A special message can crash your friends WhatsApp
By Nethru Limited (www.nethru.com)
Two security researchers have found a bug in WhatsApp, which allows users to send a special message to crash their friends WhatsApp.
By Nethru Limited (www.nethru.com)
Two security researchers have found a bug in WhatsApp, which allows users to send a special message to crash their friends WhatsApp.
By Nethru Limited (www.nethru.com)
Recently fixed a bug related to the abnormal behaviour for transition event in MIUI systems. Let’s see the following code.
$("#mypage").one('webkitTransitionEnd', function() { // do something after transition event ends });
This code works without any problems in most of the Android devices. But when I try this in the devices using MIUI, this code does not execute. After searching on Google and testing, I found that webkitTransitionEnd is not supported in MIUI devices, instead it uses transitionend event. So I changed the script to the following and it works.
$("#mypage").one('webkitTransitionEnd transitionend', function() { // do something after transition event ends });
By Nethru Limited (www.nethru.com)
Starting from Android 4.4, Android introduced a new debugging tool for developers to remotely debug their web apps with Chrome Developer Tools.
In this article, I will give an introduction on how to start using Chrome Developer Tools for debugging. If you are an advanced user already, please visit the official pages for more information. (https://developers.google.com/chrome-developer-tools/)
If you don’t have a device running Android 4.4 or higher, you can debug your JavaScript using the console JavaScript APIs and view the output messages to logcat, but this is not our main focus in this article.
By Nethru Limited (www.nethru.com)
In this article, I will introduce how to dynamic change Adview position when using Admob in Android with Phonegap 2.9.0.
By Nethru Limited (www.nethru.com)
When you are building an android app with quite an amount of data, populating the data on first run is not a smart choice. This article will tell you how to preload SQLite database for android app.