Langsung ke konten utama

[News] Oh no.. Market safer than Store? ~ DroidUMM


Apple may well have the most streamlined experience in terms of the App Store, but is that in the interest of the consumer? Experts believe different...

A tech analyst has said that the Android Market offers users more transparency when it comes to keeping themselves secure from apps that may give out unwanted personal information.

Ciaran Bradley, VP Handset Security, Adaptive Mobile told T3.com that many consumers are sharing information through apps on their phones without even realising it.



He claims that out of the two major groups, Android offers the greatest benefit for consumers in this area despite being perceived as the more dangerous: "One of the interesting things that came out of this survey is that while Android has a perception as being less secure, they actually make an attempt to give you information about what’s going on."

"When you install an Android application the permissions that will be used by that application are displayed to you, such as, it may use location it may use the internet or it may access your phonebook so people should look at those permissions and ask themselves why would a flashlight application for example need to contact the internet."

He went on to point out what he believes to be a flaw with Apple's system used in the App Store: "When it comes to Apple, [choosing permissions] is taken out of your hands. You’re just assuming that Apple have got your best interests at heart and that they’re going to do their best to protect your privacy but, Apple don’t tell you what the standards are that they use, so you’re very much at the mercy of them."

In a report published this week the analytics company highlighted concerning stats that showed trusted apps such as Angry Birds were contacting advertising domains and analytics firms with information crossing both the Android and iOS platforms with some apps contacting as many as 14 different domains.

Android market, market android, store, safer, market, apple store,  apple store , store apple,

Komentar

Postingan populer dari blog ini

WhatsAppSniffer Hack WhatsApp

Who uses WhatsApp Messenger? From The look of the  Play Store listing , a  damn lot  of people. Considering it's so popular, it's probably a pretty secure app, right? Think again. WhatsApp actually sends all chats in  plaintext , so anyone on the same Wi-Fi network can easily pull your entire conversation - including pictures and videos - straight out of the air. And now, that process is even easier than ever thanks to a new app called  WhatsAppSniffer . It's basically just a packet sniffer, but it makes the process of pulling WhatsApp chats out of the sky stupid-easy, and that's never a good thing. You might as well just shout your private conversations across the room.

[Concept] Model View Present (MVP) Pattern for Architecture Android~ DroidUMM

 Model-View-Presenter (MVP) is an architecture pattern for the presentation layer of software applications. The pattern was originally developed at Taligent in 1990s and first was implemented in C++ and Java. In MVP, the View and the Model are neatly separated and the View exposes a contract through which the Presenter access the portion of View that is dependent on the rest of the system.  [Next Article Implement MVP on Android] The Model is the component which preserves data, state and business logic; it just exposes a group of service interfaces to Presenter and hides the internal details. The View is the user interface, it receives user’s action and contract to Presenter to achieve user’s need, and then the View responds user by result information. The Presenter sits in between the View and the Model; it receives input from the View and passes commands down to the Model. It then gets result and updates the View trough the contracted View interface.