This is not the first instance of a malware infestation making it through the screening process on Google Play, nor is it the most damaging – Checkpoint did not find any evidence, for instance, that “Judy” compromised data on infected phones. That Judy was able to hide on Google Play for so long highlights the tradeoffs of Android operating system, which is often seen as more open but less secure than Apple’s iOS.
Mohit Saxena
Monday, 29 May 2017
Saturday, 27 May 2017
If you want a JSON data for your location using your Latitude and Longitude!
http://maps.googleapis.com/maps/api/geocode/json?latlng=latitude,longitude&sensor=true
hit this link and you can find the all data related to your location or lat long..
hit this link and you can find the all data related to your location or lat long..
Check whether MOCK location is Enable or Not in CORDOVA?
Add plugin
cordova-plugin-mock-location
Add this code in your index.js file
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.plugins.mocklocation.check(successCallback, errorCallback);
}
function successCallback(result) {
console.log(result); // true - enabled, false - disabled
}
function errorCallback(error) {
console.log(error);
}
cordova-plugin-mock-location
Add this code in your index.js file
document.addEventListener("deviceready", onDeviceReady, false);
function onDeviceReady() {
window.plugins.mocklocation.check(successCallback, errorCallback);
}
function successCallback(result) {
console.log(result); // true - enabled, false - disabled
}
function errorCallback(error) {
console.log(error);
}
Friday, 26 May 2017
A school is using facial recognition technology to work out if pupils are paying attention or sleeping at the back!
Webcams will track the eye movements and facial expressions of students in order to determine whether they’re paying attention in class...
How to publish CORDOVA Application?
1) keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
2) my-release-key.keystore copy this file into C:\Users\Mohit\Daily Gym\platforms\android
3) Make a file name release-signing.properties in this path C:\Users\Mohit\Daily Gym\platforms\android with the content
storeFile=NAME-mobileapps.keystore
storeType=jks
keyAlias=alias_name
// if you don't want to enter the password at every build, use this:
keyPassword=Webtics4321
storePassword=Webtics
2) my-release-key.keystore copy this file into C:\Users\Mohit\Daily Gym\platforms\android
3) Make a file name release-signing.properties in this path C:\Users\Mohit\Daily Gym\platforms\android with the content
storeFile=NAME-mobileapps.keystore
storeType=jks
keyAlias=alias_name
// if you don't want to enter the password at every build, use this:
keyPassword=Webtics4321
storePassword=Webtics
Tuesday, 2 May 2017
Thursday, 27 April 2017
Subscribe to:
Posts (Atom)