<?xml version='1.0' encoding='UTF-8'?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearchrss/1.0/" xmlns:blogger="http://schemas.google.com/blogger/2008" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" version="2.0"><channel><atom:id>tag:blogger.com,1999:blog-1245130549955868684</atom:id><lastBuildDate>Tue, 24 Mar 2026 18:38:09 +0000</lastBuildDate><category>How To: All Guides</category><category>Information</category><category>Other</category><category>Apps</category><category>News</category><category>Tips and Tricks</category><category>Reviews</category><category>Contest</category><category>How To: Guide Finder</category><title>Android Simplicity</title><description>AndroidSim is created to provide Android How-To, News, Reviews, and Database for those people with little to no knowledge and no time to learn about the Android complex system. Android simplified to fit your Android needs. Android just got a whole lot easier!</description><link>http://android-simplicity.blogspot.com/</link><managingEditor>noreply@blogger.com (Tony Le)</managingEditor><generator>Blogger</generator><openSearch:totalResults>116</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-6230109896494678609</guid><pubDate>Sun, 25 Jul 2021 04:45:00 +0000</pubDate><atom:updated>2021-07-25T01:10:47.452-04:00</atom:updated><title>Windows WSL2 Docker with PiHole and Unbound For Recursive DNS</title><description>&lt;p&gt;Typically, when you search for a domain name, the resolver will recursively pass your request on until it finds the Authoritative Name Server. This can be a potential security hole as someone can easily track down all the url that you visited, as well as it&#39;s paths.&lt;/p&gt;&lt;p&gt;Unbound is a validating, recursive, and caching DNS resolver.&lt;/p&gt;&lt;p&gt;Pi-hole includes a caching and forwarding DNS server, now known as FTLDNS. After applying the blocking lists, it forwards requests made by the clients to configured upstream DNS server.&amp;nbsp;&lt;/p&gt;&lt;p&gt;By combining the two software, we can make sure that all DNS requests go straight to a Authoritative Name Server and eliminating the middle man (i.e. your own hosted Unbound becomes that middle man and finds the Authority for you in a nonrecursive mode).&amp;nbsp;&lt;/p&gt;&lt;p&gt;This article assumes you have general knowledge of how &amp;lt;a href=&quot;https://pi-hole.net/&quot;&amp;gt;PiHole&amp;lt;/a&amp;gt; and docker works.&amp;nbsp;&lt;/p&gt;&lt;p&gt;*Note* If you are running pihole on a vm or hardware then just follow this &lt;a href=&quot;https://docs.pi-hole.net/guides/dns/unbound/&quot;&gt;guide&lt;/a&gt;.&amp;nbsp;&lt;/p&gt;&lt;p&gt;&lt;b&gt;Steps:&lt;/b&gt;&lt;/p&gt;&lt;p&gt;1. Install docker&lt;/p&gt;&lt;p&gt;2. Create a docker compose file (PiHole_docker-compose.yml) using the code below in whatever path you decide to use:&amp;nbsp;&lt;/p&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;=============&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;version: &#39;3&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;services:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; pihole:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; image: &#39;pihole/pihole:latest&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; privileged: true&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; restart: unless-stopped&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; dns:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - 127.0.0.1&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - 1.1.1.1&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; links:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - unbound&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; ports:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - &#39;80:80&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - &#39;53:53/udp&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - &#39;53:53/tcp&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; environment:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; TZ: TZ=America/Chicago&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; ServerIP: YOUR HOST IP GOES HERE&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; WEBPASSWORD: YOUR PW GOES HERE&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; DNS1: &#39;169.254.0.19#5335&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; cap_add:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - NET_ADMIN&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; volumes:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; # ./Config will mount to the volume on your host machine and save the settings in the below locations&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - &#39;./config/pihole:/etc/pihole&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - &#39;./config/dnsmasq:/etc/dnsmasq.d&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; networks:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; pihole_net:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ipv4_address: 169.254.0.3&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; unbound:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; image: klutchell/unbound&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; restart: unless-stopped&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; volumes:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; - &#39;./config/unbound:/opt/unbound/etc/unbound&#39;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; networks:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; pihole_net:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; ipv4_address: 169.254.0.19&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;networks:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; pihole_net:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; driver: bridge&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; ipam:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; config:&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; - subnet: 169.254.0.0/29&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;==============&lt;/span&gt;&lt;/div&gt;&lt;p&gt;3. In the same location, create config/unbound directory&lt;/p&gt;&lt;p&gt;4. Create a new file named unbound.conf&lt;/p&gt;&lt;p&gt;5. Paste in the below code and modify as needed.&lt;/p&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;==============&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;server:&lt;br /&gt;&amp;nbsp; &amp;nbsp; # If no logfile is specified, syslog is used&lt;br /&gt;&amp;nbsp; &amp;nbsp; # logfile: &quot;/var/log/unbound/unbound.log&quot;&lt;br /&gt;&amp;nbsp; &amp;nbsp; verbosity: 0&lt;br /&gt;&amp;nbsp; &amp;nbsp; interface: 169.254.0.19&lt;br /&gt;&amp;nbsp; &amp;nbsp; port: 5335&lt;br /&gt;&amp;nbsp; &amp;nbsp; do-ip4: yes&lt;br /&gt;&amp;nbsp; &amp;nbsp; do-udp: yes&lt;br /&gt;&amp;nbsp; &amp;nbsp; do-tcp: yes&lt;br /&gt;&amp;nbsp; &amp;nbsp; # May be set to yes if you have IPv6 connectivity&lt;br /&gt;&amp;nbsp; &amp;nbsp; do-ip6: no&lt;br /&gt;&amp;nbsp; &amp;nbsp; # You want to leave this to no unless you have *native* IPv6. With 6to4 and&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Terredo tunnels your web browser should favor IPv4 for the same reasons&lt;br /&gt;&amp;nbsp; &amp;nbsp; prefer-ip6: no&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Use this only when you downloaded the list of primary root servers!&lt;br /&gt;&amp;nbsp; &amp;nbsp; # If you use the default dns-root-data package, unbound will find it automatically&lt;br /&gt;&amp;nbsp; &amp;nbsp; #root-hints: &quot;/var/lib/unbound/root.hints&quot;&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Trust glue only if it is within the server&#39;s authority&lt;br /&gt;&amp;nbsp; &amp;nbsp; harden-glue: yes&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Require DNSSEC data for trust-anchored zones, if such data is absent, the zone becomes BOGUS&lt;br /&gt;&amp;nbsp; &amp;nbsp; harden-dnssec-stripped: yes&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Don&#39;t use Capitalization randomization as it known to cause DNSSEC issues sometimes&lt;br /&gt;&amp;nbsp; &amp;nbsp; # see https://discourse.pi-hole.net/t/unbound-stubby-or-dnscrypt-proxy/9378 for further details&lt;br /&gt;&amp;nbsp; &amp;nbsp; use-caps-for-id: no&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Reduce EDNS reassembly buffer size.&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Suggested by the unbound man page to reduce fragmentation reassembly problems&lt;br /&gt;&amp;nbsp; &amp;nbsp; edns-buffer-size: 1472&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Perform prefetching of close to expired message cache entries&lt;br /&gt;&amp;nbsp; &amp;nbsp; # This only applies to domains that have been frequently queried&lt;br /&gt;&amp;nbsp; &amp;nbsp; prefetch: yes&lt;br /&gt;&amp;nbsp; &amp;nbsp; # One thread should be sufficient, can be increased on beefy machines. In reality for most users running on small networks or on a single machine, it should be unnecessary to seek performance enhancement by increasing num-threads above 1.&lt;br /&gt;&amp;nbsp; &amp;nbsp; num-threads: 1&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Ensure kernel buffer is large enough to not lose messages in traffic spikes&lt;br /&gt;&amp;nbsp; &amp;nbsp; so-rcvbuf: 1m&lt;br /&gt;&amp;nbsp; &amp;nbsp; # Ensure privacy of local IP ranges. Remove ones you dont need&lt;br /&gt;&amp;nbsp; &amp;nbsp; private-address: 192.168.0.0/16&lt;br /&gt;&amp;nbsp; &amp;nbsp; private-address: 169.254.0.0/16&lt;br /&gt;&amp;nbsp; &amp;nbsp; private-address: 172.18.0.0/12&lt;br /&gt;&amp;nbsp; &amp;nbsp; private-address: 10.0.0.0/8&lt;br /&gt;&amp;nbsp; &amp;nbsp; private-address: fd00::/8&lt;br /&gt;&amp;nbsp; &amp;nbsp; private-address: fe80::/10&lt;br /&gt;&amp;nbsp; &amp;nbsp; # The action allow gives access to clients from that netblock.&amp;nbsp; It gives only access for recursion clients (which&amp;nbsp; is&amp;nbsp; what&amp;nbsp; almost all clients need).&amp;nbsp; Nonrecursive queries are refused.&lt;br /&gt;&amp;nbsp; &amp;nbsp; # The action allow_snoop gives nonrecursive access too.&amp;nbsp;&lt;br /&gt;&amp;nbsp; &amp;nbsp; access-control: 127.0.0.1 allow_snoop #Container ip address. Good for debugging in shell.&amp;nbsp;&lt;br /&gt;&amp;nbsp; &amp;nbsp; access-control: 169.254.0.0/16 allow&amp;nbsp; # Allow only bridged clients&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: monospace;&quot;&gt;==============&lt;/span&gt;&lt;/div&gt;&lt;p&gt;6. In Cmd run the following command: &lt;b&gt;docker compose -p pihole -f &quot;PiHole_docker-compose.yml&quot; up -d&lt;/b&gt;&lt;/p&gt;&lt;p&gt;&lt;br /&gt;&lt;/p&gt;</description><link>http://android-simplicity.blogspot.com/2021/07/windows-wsl2-docker-with-pihole-and.html</link><author>noreply@blogger.com (Tony Le)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7320830415960168643</guid><pubDate>Mon, 03 Dec 2012 20:43:00 +0000</pubDate><atom:updated>2012-12-03T15:46:36.076-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #49: Connect USB Devices &amp; Peripherals to Android with USB Host</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Do &lt;/span&gt;you have an USB device that you want to connect to your Android? Most USB devices (such as mouses, keyboard, &lt;a href=&quot;http://www.androidsim.net/2011/07/how-to-30-connect-xbox360-wireless.html&quot;&gt;xbox dongles&lt;/a&gt;, flash drives, and even external hard-drives) are capable of running on the Android system.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;You may need to purchase a converter, as most phones use microusb, if your device does not have a standard USB port. USB host comes with Android 3.0(Honeycomb) and newer. There are times when the ROM or firmware that you have on your Android operating system may not have the driver/software for that particular device.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;That said, it is pretty rare to find a peripheral that is not supported.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;div&gt;
&lt;span style=&quot;background-color: yellow; font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;b style=&quot;background-color: yellow;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Requirement to run USB host.&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;- Android 3.x and up&lt;/span&gt;&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;- Some &lt;a href=&quot;http://www.amazon.com/T-Flash-Adapter-Samsung-GT-i9100-GT-N7000/dp/B005FUNYSA/ref=sr_1_1?ie=UTF8&amp;amp;qid=1354566640&amp;amp;sr=8-1&amp;amp;keywords=micro+usb+host&quot;&gt;USB host enabler&lt;/a&gt; that is specific for your device(most are micro-usb)&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/pCrecOR34Fs&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/div&gt;
</description><link>http://android-simplicity.blogspot.com/2012/12/how-to-49-connect-usb-devices.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/pCrecOR34Fs/default.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-8293835805361350415</guid><pubDate>Tue, 20 Nov 2012 18:33:00 +0000</pubDate><atom:updated>2012-12-03T15:23:29.666-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #48: Play PSP Games Android Device</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;i&gt;&lt;span style=&quot;font-size: large;&quot;&gt;&lt;b&gt;By&lt;/b&gt;&lt;/span&gt; &lt;/i&gt;now you probably know that the Android is capable of playing &lt;a href=&quot;http://www.androidsim.net/2012/01/how-to-44-play-flash-games-on-android.html&quot;&gt;FLASH&lt;/a&gt;, &lt;a href=&quot;http://slideme.org/user/yongzh&quot;&gt;GBA, NES, SNES, and SEGA&lt;/a&gt;&amp;nbsp;games, but did you know that PSP games also works?&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Developers have created an emulator that have successfully played PSP games in .iso and .cso files. The app &lt;a href=&quot;https://play.google.com/store/apps/details?id=org.ppsspp.ppsspp&quot;&gt;PPSSPP&lt;/a&gt;&amp;nbsp;is still just a prototype and most PSP is not supported.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;That said, PPSSPP has huge potential so watch the video below, &lt;a href=&quot;https://play.google.com/store/apps/details?id=org.ppsspp.ppsspp&quot;&gt;test out the app&lt;/a&gt;, and support the developer.&amp;nbsp;Remember&amp;nbsp;that&amp;nbsp;you&amp;nbsp;must dump or download the PSP games yourself as PPSSPP is only an emulator.&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/HJJZvTmG5n4&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;&lt;/div&gt;
</description><link>http://android-simplicity.blogspot.com/2012/11/how-to-47-play-psp-games-android-device.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/HJJZvTmG5n4/default.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-5819643487533683351</guid><pubDate>Mon, 19 Nov 2012 16:31:00 +0000</pubDate><atom:updated>2012-11-20T13:22:38.122-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Getting Google Voice Search on ICS </title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Lets &lt;/span&gt;&lt;/b&gt;be honest, one of the main reasons to be on Jelly Bean is the awesome new Voice Search feature. The improved accuracy and response time makes Voice Search the new Siri killer. Now you can simply say stuff like &quot;Will it rain tomorrow&quot; and Voice Search will figure out the correct response. &amp;nbsp; &lt;br /&gt;
&lt;br /&gt;
If you try to download Voice Search on a non-Jelly bean system, it will simply say &quot;Your device is not&amp;nbsp;compatible&quot; and rejects the installation.&amp;nbsp;Fortunately, rooted ICS users can get the app on their devices too using the steps below.&lt;/div&gt;
&lt;br /&gt;&lt;/div&gt;
&lt;iframe allowfullscreen=&quot;allowfullscreen&quot; frameborder=&quot;0&quot; height=&quot;315&quot; src=&quot;http://www.youtube.com/embed/MQnZe_Iggx0&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;

&lt;br /&gt;
&lt;br /&gt;
&lt;b style=&quot;background-color: yellow;&quot;&gt;Steps to enable Google Voice Search on ICS Devices&lt;/b&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white;&quot;&gt;Requirement:&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
-&lt;a href=&quot;http://www.androidsim.net/2009/08/how-to-2-how-to-root.html&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Root&lt;/a&gt;
&lt;br /&gt;
-&lt;span style=&quot;background-color: white; color: #404040; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold;&quot;&gt;&lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=1596800&quot;&gt;ARMv7/ARMv6&lt;/a&gt; devices only&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #404040; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold;&quot;&gt;-&lt;/span&gt;&lt;span style=&quot;background-color: white; color: #222225; font-family: Arial, Helvetica, sans-serif; font-size: 13px;&quot;&gt;You must be on a deodexed ROM(most custom roms are)&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: #404040; font-family: Arial, Helvetica, sans-serif; font-size: 13px; font-weight: bold;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;b style=&quot;background-color: orange;&quot;&gt;Steps:&lt;/b&gt;&lt;br /&gt;
1) Download the zip file of the correct modded version of &lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=1747224&quot;&gt;Google Now&lt;/a&gt;&amp;nbsp;for your ARM device(see requirement - Links for&amp;nbsp;&lt;a href=&quot;http://www.mediafire.com/?p3onnfmrrxz1u37&quot;&gt;ARMv6&lt;/a&gt;&amp;nbsp;and &lt;a href=&quot;http://www.mediafire.com/?hsos53699wq2ttm&quot;&gt;ARMv7&lt;/a&gt;)&lt;br /&gt;
2) Put the file in your SDcard.&lt;br /&gt;
3) Flash the zip in CWM. This will install Google Now into your app drawer&lt;br /&gt;
4) Install Google latitude installed set up the account for latitude&lt;br /&gt;
5) Open Google Now and go through the setup process. Click the &quot;Yes, I&#39;m in.&quot; option and your cards appear&lt;br /&gt;
6) Complete!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;&lt;/div&gt;
</description><link>http://android-simplicity.blogspot.com/2012/11/getting-google-voice-search-on-ics.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/MQnZe_Iggx0/default.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-3261728728006429720</guid><pubDate>Sun, 04 Nov 2012 17:17:00 +0000</pubDate><atom:updated>2012-11-20T13:22:25.925-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #47: Map Android Keys To Any Keyboard</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span style=&quot;background-color: #f6f6f6;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;&lt;span style=&quot;color: #202020;&quot;&gt;&lt;b&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Ever &lt;/span&gt;&lt;/b&gt;plugged in an external keyboard with Bluetooth/USB and notice that some basic android key events are missing? &lt;/span&gt;&lt;span style=&quot;color: red;&quot;&gt;Useful android key events such as the Home, Search, and Menu are&amp;nbsp;critical&amp;nbsp;to using any android system&lt;/span&gt;&lt;span style=&quot;color: #202020;&quot;&gt;. For my Bluetooth keyboard, I had no Search key. This made it very difficult to find anything on my Android device. Each time I wanted to do the Search event, I had to press on the&amp;nbsp;capacitive search key manually on the Android phone. There is a solution for this.&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: #f6f6f6;&quot;&gt;&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: yellow; line-height: 16px;&quot;&gt;&lt;b&gt;Requirements&lt;/b&gt;:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;- Root&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;- &lt;a href=&quot;https://github.com/chrisboyle/keytest/downloads&quot;&gt;KeyTest.Apk&lt;/a&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;- Any File Explorer(&lt;a href=&quot;https://play.google.com/store/apps/details?id=com.estrongs.android.pop&amp;amp;hl=en&quot;&gt;ES File Explorer&lt;/a&gt;: Go to &quot;Settings&quot;-&amp;gt;Scroll down-&amp;gt; &quot;Root Settings&quot; -&amp;gt; Check all boxes)&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;background-color: yellow; line-height: 16px;&quot;&gt;&lt;b&gt;Steps&lt;/b&gt;:&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;1) Download, &lt;a href=&quot;http://www.androidsim.net/2009/08/how-to-1-how-to-install-application.html&quot;&gt;install&lt;/a&gt;, and open&amp;nbsp;&lt;a href=&quot;https://github.com/chrisboyle/keytest/downloads&quot;&gt;KeyTest.Apk&lt;/a&gt; on your Android Device&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif; line-height: 16px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif; line-height: 16px;&quot;&gt;2) Press the hard key you want to simulate. I pressed on capacitive Search key on my Android device.&amp;nbsp;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;background-color: white; color: red; font-family: Verdana, sans-serif; line-height: 16px;&quot;&gt;There is a few things to know:&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;- You will see a &quot;ScanCode&quot;: this is the number that maps the device. Mine is 217 (good to know but you dont need this information)&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;- You will see a &quot;keyCode&quot; under KeyEvent: this is the Action event. Mine is KEYCODE_SEARCH. Remember the value after KEYCODE_.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;3) After the BlueTooth/USB is connected, pressed on any currently mapped keys that is not used. I Pressed FN+10 to simulate &quot;F12&quot;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;- Write down the ScanCode. Mine is 88&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;color: #202020;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;color: #202020;&quot;&gt;&lt;span style=&quot;line-height: 16px;&quot;&gt;4) On the File Explorer, navigate to&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;background-color: #f6f6f6; color: #202020; line-height: 16px;&quot;&gt;&amp;nbsp;&lt;/span&gt;&lt;span style=&quot;background-color: #f6f6f6; color: #202020; line-height: 16px;&quot;&gt;/system/usr/keylayout.&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;5) Find qwerty.kl(Older system) or Generic.kl(Newer system) and make a backup copy somewhere else.&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;*&lt;i style=&quot;background-color: #fce5cd;&quot;&gt;Note&lt;/i&gt;* You can check which one it is by opening qwerty.kl and it should say if it is depreciated near the top&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;6) Open qwerty.kl or Generic.kl. You will see a&amp;nbsp;&lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif; line-height: 16px;&quot;&gt;listing of&lt;/span&gt;&lt;span style=&quot;color: #202020; font-family: Verdana, sans-serif; line-height: 16px;&quot;&gt;&amp;nbsp;&quot;Key &#39;ScanCode&#39; &#39;KEYCODE_ACTION&#39; &quot;. Find the ScanCode that was written down in step 3) above. Mine is listed as Key 88 F12&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;7) Change the KEYCODE_ACTION to the new mapping. Mine is changed to Key 88 SEARCH&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;8) Save the file and reboot&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;9) Done! Now whenever I press FN+10, I can simulate the Search key&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br /&gt;&lt;/span&gt;&lt;/span&gt;
&lt;span style=&quot;background-color: red; color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Important Extra notes:&lt;/b&gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;-&amp;nbsp;&lt;a href=&quot;http://developer.android.com/reference/android/view/KeyEvent.html&quot;&gt;Android KeyCode&lt;/a&gt; - A long list of KEYCODE_ACTION events&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style=&quot;color: #202020; line-height: 16px;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;- While you can use KEYCODE_ACTION more then once, you cannot use the same ScanCode more than once. This will cause the Keyboard to fail, so just use the on-screen touchkeyboard to replace qwerty/Generic.kl with the backup.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;
</description><link>http://android-simplicity.blogspot.com/2012/11/how-to-47-map-android-keys-to-any.html</link><author>noreply@blogger.com (Tony Le)</author><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-6806785391802261387</guid><pubDate>Wed, 24 Oct 2012 17:21:00 +0000</pubDate><atom:updated>2012-11-20T22:03:20.367-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #35: Connecting To Adhoc Networks on Android Tablets/Phones</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif; font-size: large;&quot;&gt;Lets&lt;/span&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt; review the basics: firstly, what is tethering and Adhoc WiFi? Tethering is basically the sharing of internet connection of an internet capable device(host) with other devices(clients). &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The host device usually have internet connection from some kind of data plan such as 3G, 4G, and/or Edge. Obviously, it would be a waste of money to purchase data plans for every device that you own. &lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/08/how-to-35-connecting-to-adhoc-networks.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/08/how-to-35-connecting-to-adhoc-networks.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiVweCHeJRsV0mqu4fL-T96PgQa45uQidE5pc22rDUYvYhWJ0NOZz6rZIqVMUSzecTZRiCWjdqYwLR-s7KsoDU0CAasjtSMxDpJO_u2wsVQ2ouUeD7kC-5_14LYSih68Y81jtxJy4bT6Do/s72-c/adhoc+network.jpg" height="72" width="72"/><thr:total>17</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7520482793203631554</guid><pubDate>Mon, 02 Apr 2012 15:57:00 +0000</pubDate><atom:updated>2012-04-02T12:13:46.580-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #46: Speed up Slow/Sluggish Android Devices</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Have &lt;/span&gt;you started noticing that your Android device is running slow or sluggish? Well, you are not alone. It really is easy to keep your Android running like new.&lt;span style=&quot;color: red;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;You just need to learn how to bring back the performance of the device and know how to keep it that way&lt;/span&gt;; as there is only a handful of problems that could slow down your device. &lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Like any other computing devices, it requires regular maintenance and due diligence. Follow the steps below to greatly improve any &lt;a href=&quot;http://www.amzn.com/mn/search/?_encoding=UTF8&amp;amp;x=0&amp;amp;tag=1655-20&amp;amp;linkCode=ur2&amp;amp;y=0&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;field-keywords=android&amp;amp;url=search-alias%3Daps#/ref=nb_sb_noss_1?url=search-alias=aps&quot; target=&quot;_blank&quot;&gt;Android&lt;/a&gt;.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b style=&quot;background-color: yellow;&quot;&gt;1. Uninstall or Remove Unused Apps&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Applications are great, espically the widgets, but once you start to install them on your device, they start to stack up to become a force that can greatly slow down the system. Ask yourself, do you really need that app? Also do not forget to keep a close eye on free apps, as the trend has become to display background ads on the notification bar.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;u&gt;Steps: &lt;/u&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Go into Settings&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Click on Applications &lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Click on Running Services or Manage Applications&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Uninstall or stop any apps that you don&amp;#39;t need&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;background-color: yellow; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;2. Install a Task Manager tool &lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Task managers are able to kill running  apps. It can clear the RAM so that the Android system has more memory to work with. If you have alot of running apps with little to no ram, your system will feel close to a crawl. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2012/04/how-to-46-speed-up-slowsluggish-android.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2012/04/how-to-46-speed-up-slowsluggish-android.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/os6ExAcN7o4W9s1H_qLyHDapwqdMVrvQPT8rNz5BqOsx29J9qEhR7rt35nMLTNO3vag=s72-c" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-4571543394269217001</guid><pubDate>Wed, 07 Mar 2012 16:14:00 +0000</pubDate><atom:updated>2012-04-04T23:38:35.936-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">News</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Update The New Google Play Store Manually</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;If you havn&amp;#39;t heard by now, Google has decided to change some of the names of its apps - mostly by adding &amp;quot;Play&amp;quot; to the title. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Not sure what kind reasoning they had to do this, but I am pretty sure they know what they are doing (I hope!). &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;background-color: yellow; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Apps that had a title change:&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Google Android Market = Google Play Store&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Google Music = Google Play Music&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Google Books = Google Play Books&lt;/span&gt;&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Google Movies = Google Play Movies&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Google Play Store can be updated manually by copying and installing the Google Play Store apk below.&lt;/span&gt;&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif; margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEgZUsXHzTymJoOIvdV-UfymwZY6H6yDvq9_j-XCWENCoGuchYFQhs-k3zzF3bG9-znFQA3MjufZiVU37bjCxf0B58LxTGz1ZKcFqskalrjGVA6y2ctc5d9DHTOko6yu_PfbwUNFTizV4/s320/Screenshot_2012-03-06-14-49-27-365x650.png&quot; width=&quot;179&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2012/03/update-new-google-play-store-manually.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2012/03/update-new-google-play-store-manually.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgEgZUsXHzTymJoOIvdV-UfymwZY6H6yDvq9_j-XCWENCoGuchYFQhs-k3zzF3bG9-znFQA3MjufZiVU37bjCxf0B58LxTGz1ZKcFqskalrjGVA6y2ctc5d9DHTOko6yu_PfbwUNFTizV4/s72-c/Screenshot_2012-03-06-14-49-27-365x650.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-3345836663589342285</guid><pubDate>Mon, 27 Feb 2012 21:39:00 +0000</pubDate><atom:updated>2012-03-01T00:25:21.040-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #45: How to Hide/Delete Android Devices on Google Market Account</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Now &lt;/span&gt;that I have been using Android for over 5 years, the list of Android devices on my Android market has grown to become a huge database of&lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt; &lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;unused and dysfunctional Android devices. &lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;After upgrading to the &lt;a href=&quot;http://www.amazon.com/gp/product/B0061YRDX6/ref=as_li_ss_tl?ie=UTF8&amp;amp;tag=androisimpli-20&amp;amp;linkCode=as2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;creativeASIN=B0061YRDX6&quot;&gt;Samsung Galaxy Note N7000&lt;/a&gt; and finding it near impossible to efficiently select the desired Android device to simply install an app using the Android Market&amp;#39;s website, I decided it was time for some cleaning(see picture below). &lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;Unfortunately, and even after much &lt;a href=&quot;https://groups.google.com/a/googleproductforums.com/forum/#!topic/android-market/zdOsoM9ErNw&quot; target=&quot;_blank&quot;&gt;complaint&lt;/a&gt;, &lt;b&gt;Google still has not added a &amp;quot;delete&amp;quot; feature for devices on Android Market&lt;/b&gt; - &lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;clearly to emphasize their love for hording and &lt;a href=&quot;http://googleblog.blogspot.com/2012/01/updating-our-privacy-policies-and-terms.html&quot; target=&quot;_blank&quot;&gt;dominance &lt;/a&gt;over your history and data. U&lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;ntil they do, we will have to manage with a work around; hiding the device from view. See below for &lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;instructions&lt;/span&gt;&lt;span style=&quot;text-align: -webkit-auto;&quot;&gt;.&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;table align=&quot;center&quot; cellpadding=&quot;0&quot; cellspacing=&quot;0&quot; class=&quot;tr-caption-container&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;tbody&gt;
&lt;tr&gt;&lt;td style=&quot;text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih2vvy9tDAAmV3Ibf-gvbWlPIZA4PUlppDNTv_duOFzGO2UxsS5zKcGhWKr6ZyC87tmOw_6ul_g-5hjP1Ld6rVd-cb06BLIHIQ25qwEbxF0oCPXUvEWpkzbN-NLPbvj8AjxkrQVi8vRTc/s1600/android-market-tethering-apps-blocked.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: auto; margin-right: auto; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;212&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih2vvy9tDAAmV3Ibf-gvbWlPIZA4PUlppDNTv_duOFzGO2UxsS5zKcGhWKr6ZyC87tmOw_6ul_g-5hjP1Ld6rVd-cb06BLIHIQ25qwEbxF0oCPXUvEWpkzbN-NLPbvj8AjxkrQVi8vRTc/s320/android-market-tethering-apps-blocked.png&quot; width=&quot;320&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;tr&gt;&lt;td class=&quot;tr-caption&quot; style=&quot;text-align: center;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif; font-size: small;&quot;&gt;List of old, unused, incompatible devices&lt;/span&gt;&lt;/td&gt;&lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div style=&quot;text-align: -webkit-auto;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2012/02/how-to-45-how-to-hidedelete-android.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2012/02/how-to-45-how-to-hidedelete-android.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEih2vvy9tDAAmV3Ibf-gvbWlPIZA4PUlppDNTv_duOFzGO2UxsS5zKcGhWKr6ZyC87tmOw_6ul_g-5hjP1Ld6rVd-cb06BLIHIQ25qwEbxF0oCPXUvEWpkzbN-NLPbvj8AjxkrQVi8vRTc/s72-c/android-market-tethering-apps-blocked.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7070913777512491242</guid><pubDate>Mon, 23 Jan 2012 15:53:00 +0000</pubDate><atom:updated>2012-01-23T10:53:56.985-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">Reviews</category><title>Review Corner: Motorola MOTOLUXE</title><description>&lt;span style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The &lt;b&gt;Motorola Motoluxe&lt;/b&gt;, expected for release in February/March 2012, is Motorola’s attempt to create an affordable, large screen, Android smartphone. The MOTOLUXE, alongside the Defy Mini, is one of &lt;span style=&quot;color: red;&quot;&gt;Motorola’s first releases since Motorola Mobility&lt;/span&gt; - the mobile phone side of the business - was acquired by Google. &lt;/span&gt;&lt;/span&gt;&lt;div&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Many saw this as a move by Google not necessarily to turnaround a struggling part of the Motorola business but rather an attempt to expand their patented technology portfolio to use in other future Google phones. Nevertheless, the Google owned phone makers announced in 2011 their intention to release the two new attempts to break into the smartphone market.&lt;/span&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The MOTOLUXE, with its large 4inch, 480 x 854 pixel screen on the front and a sharp 8 megapixel camera on its back with a built in zoom feature, certainly looks like a potential leader in the low-cost market. It’s very &lt;span style=&quot;color: red;&quot;&gt;unlikely to ever rival the likes of the iPhone&lt;/span&gt; but then it was never really intended to as Motorola look to capitalise on this low-budget market. &lt;/span&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif; margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYKedETIFcG7JyV4wmWd9ZrChuz561urAIZzgmCyC7cxSNUYU27ArFfEJe2uHTQVlHBYoLGZQX-ngBPBq2145lKgnIzoK0jV7bR6yCOSldPJSZk-PeNw5A5izR5ZJi8pjYKUorwaoLLZc/s1600/motoluxe.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;233&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYKedETIFcG7JyV4wmWd9ZrChuz561urAIZzgmCyC7cxSNUYU27ArFfEJe2uHTQVlHBYoLGZQX-ngBPBq2145lKgnIzoK0jV7bR6yCOSldPJSZk-PeNw5A5izR5ZJi8pjYKUorwaoLLZc/s320/motoluxe.jpg&quot; width=&quot;320&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2012/01/review-corner-motorola-motoluxe.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2012/01/review-corner-motorola-motoluxe.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgYKedETIFcG7JyV4wmWd9ZrChuz561urAIZzgmCyC7cxSNUYU27ArFfEJe2uHTQVlHBYoLGZQX-ngBPBq2145lKgnIzoK0jV7bR6yCOSldPJSZk-PeNw5A5izR5ZJi8pjYKUorwaoLLZc/s72-c/motoluxe.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7858476228726227282</guid><pubDate>Thu, 12 Jan 2012 15:52:00 +0000</pubDate><atom:updated>2012-01-12T10:52:11.952-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>How-To #44: Play Flash Games On Android</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;As &lt;/span&gt;you know, one of the major selling point of Android over iOS is the ability to play Flash content. While the Android OS handles Flash flawlessly using &lt;a href=&quot;https://market.android.com/details?id=com.adobe.flashplayer&quot;&gt;Adobe Flash Player&lt;/a&gt;,&lt;span style=&quot;color: red;&quot;&gt; I find myself having trouble playing Flash games through the web browser&lt;/span&gt;. &lt;/span&gt;&lt;br&gt;
&lt;div&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Plugging in a bluetooth mouse would easily solve the problem, but in most cases, I am playing the Flash game on the go, with no mouse readily available. So using the touch screen to control the flash games is the only option.  &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;color: red;&quot;&gt;The browser app was not designed for gaming purposes&lt;/span&gt;; it would commonly mistake the touch commands for the game as a scroll, zoom, or some other unwanted action. So the true problem was: &lt;b&gt;how to play flash, or swf files, on Android &lt;/b&gt;outside of the browser?&lt;/span&gt;&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;span style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2012/01/how-to-44-play-flash-games-on-android.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2012/01/how-to-44-play-flash-games-on-android.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhqhR5PZ1w3JHH63pTSbjO_aJGcksHBo24j9rvWjnoo4LnafOhVFY1kxch8MSrMgCq3WoCKFSmV4uex2NNUOUzWa1y4f0aWzXOc1JyBZBVx7XfZSUZ10_uWjiEIM9kzGAbT5IaJYCMjh3k/s72-c/SC20120111-224733.jpg" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7659275009065128655</guid><pubDate>Fri, 16 Dec 2011 17:33:00 +0000</pubDate><atom:updated>2012-03-01T00:29:40.320-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #43: Setup Google Cloud Print For Android &amp; PC</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span style=&quot;font-size: large;&quot;&gt;Printing &lt;/span&gt;can be difficult sometimes; when the only printer you have is not connected to the network. You would then have to save whatever website, email, or document you are viewing from your printer-less laptop or Android device and send it to the PC with printer connectivity. All that work just to print a simple page. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;With Google Cloud Print, that time consuming process is a thing of the pass. &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The files you want to print is sent securely through the web, or &amp;quot;cloud&amp;quot;. Since its sent through the internet, you can print anywhere, anytime, and without any printer drivers. It also doesn&amp;#39;t matter if its a tablet, phone, laptop, tv, or PC; there are no boundaries to Google Cloud Print.&lt;/span&gt;&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;http://code.google.com/apis/cloudprint/images/cloudprint2.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;199&quot; src=&quot;http://code.google.com/apis/cloudprint/images/cloudprint2.png&quot; width=&quot;320&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;You can setup Google Cloud Print with &lt;a href=&quot;http://www.amazon.com/mn/search/?_encoding=UTF8&amp;amp;tag=androisimpli-20&amp;amp;linkCode=ur2&amp;amp;camp=1789&amp;amp;creative=390957&amp;amp;field-keywords=google%20cloud%20printer&amp;amp;url=search-alias%3Daps&amp;amp;sprefix=google%20clou%2Caps%2C139&quot; target=&quot;_blank&quot;&gt;Google &amp;quot;Cloud Ready&amp;quot; Printers&lt;/a&gt;&lt;img alt=&quot;&quot; border=&quot;0&quot; height=&quot;1&quot; src=&quot;https://www.assoc-amazon.com/e/ir?t=androisimpli-20&amp;amp;l=ur2&amp;amp;o=1&quot; style=&quot;border: none !important; margin: 0px !important;&quot; width=&quot;1&quot;&gt; or with the classical usb/network printers you have connected at home. For the &lt;a href=&quot;http://www.google.com/cloudprint/learn/printers.html&quot; target=&quot;_blank&quot;&gt;Cloud Ready printers&lt;/a&gt;, all there needs to be done is plugging it in to the network using the instructions provided by the manufacturer, which most of the time is plug and play. For classical printers, you would need to use a &amp;quot;Google Cloud Printer Connector&amp;quot;. The connector is basically the original PC with the printer installed linked up with Google Chrome.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: #fff2cc; font-family: Verdana, sans-serif; font-size: large;&quot;&gt;How To Set up Google Cloud Print With Classical Printers&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;These instructions will enable the &amp;quot;Google Cloud Connect&amp;quot;. This will bridge the connection between the printer enabled PC with any other devices.&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/how-to-43-setup-google-cloud-print-for.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/how-to-43-setup-google-cloud-print-for.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhQUkqjQP6beOnFrj-apjmJZkLv8RtzjL3SxXbURun2lSfvr3X9mj6dqabVdDLyaKJkAKHuuq5xCkXLxN52iR40yLl5oVu3dMIiBur65agi0qJJHuADzJDrRvI3pEtMqD82mx13AlVPZQg/s72-c/Sharing.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-243829853398034759</guid><pubDate>Wed, 14 Dec 2011 18:13:00 +0000</pubDate><atom:updated>2012-03-07T11:16:22.227-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">News</category><title>Update The New Android Market Manually</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt; &lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt; &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red; font-family: Verdana, sans-serif;&quot;&gt;*Updated 3/07/12* Google has changed Android Market to &lt;a href=&quot;http://www.androidsim.net/2012/03/update-new-google-play-store-manually.html&quot; target=&quot;_blank&quot;&gt;Android Play Store&lt;/a&gt;.&lt;/span&gt;&lt;/b&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red; font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;&lt;br&gt;
&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLyqrnFhXWcVPcZC3qCbEBi-JZbdpPvmxZfM3_QKiM138VoK_GdGdoU5IsV2NQs1IxKJiJxI0odzqdfY48mPIGrGQ-Gaic1LVtFPmCXPqmmKK0uaG5opxxMsBikHWgk0WOcodJU-GlpMQ/s1600/image68.png&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLyqrnFhXWcVPcZC3qCbEBi-JZbdpPvmxZfM3_QKiM138VoK_GdGdoU5IsV2NQs1IxKJiJxI0odzqdfY48mPIGrGQ-Gaic1LVtFPmCXPqmmKK0uaG5opxxMsBikHWgk0WOcodJU-GlpMQ/s320/image68.png&quot; width=&quot;190&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;Ever &lt;/span&gt;since the announcement, the&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt; &lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;new Android Market3.0 has been rolling out for Android devices with 2.2 or higher. The main feature of this Android market is the way users purchase books and movies, which starts at $1.99. These can be streamed or downloaded to an Android device. The new services is currently only available in US markets. In addition to the service features, they also made a massive overhaul of the UI to greatly enhance speed and usability.&lt;/span&gt;&lt;br&gt;
&lt;div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;iframe allowfullscreen=&quot;&quot; frameborder=&quot;0&quot; height=&quot;349&quot; src=&quot;http://www.youtube.com/embed/5Pbo-d62ivY&quot; width=&quot;560&quot;&gt;&lt;/iframe&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style=&quot;margin-bottom: 0px; margin-left: 0px; margin-right: 0px; margin-top: 0px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/07/update-new-android-market-manually.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/07/update-new-android-market-manually.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgLyqrnFhXWcVPcZC3qCbEBi-JZbdpPvmxZfM3_QKiM138VoK_GdGdoU5IsV2NQs1IxKJiJxI0odzqdfY48mPIGrGQ-Gaic1LVtFPmCXPqmmKK0uaG5opxxMsBikHWgk0WOcodJU-GlpMQ/s72-c/image68.png" height="72" width="72"/><thr:total>5</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-8522588398506791401</guid><pubDate>Sun, 11 Dec 2011 18:22:00 +0000</pubDate><atom:updated>2012-03-01T00:45:13.042-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #42: How to Unlock Android Phone</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;Android &lt;/span&gt;users who bought their Android phones off a 3rd party(like Ebay or other people), mat soon realize that the device will not work with their mobile cell phone provider. &lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;The reason for this is because Android phones are &amp;quot;locked&amp;quot; to one carrier&lt;/span&gt;. Like IPhones, Android software is designed to keep you loyal to one company. However, there is a process to unlock most Android phones. This process is device specific and can be usually found on the internet. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: white;&quot;&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot;&gt;Nonetheless, the general procedure is still the same, you must obtain the unlock code to unlock an Android Phone&lt;/span&gt;.&lt;/span&gt;&lt;/b&gt;&lt;/span&gt; Also, be sure to do some Google-ing/research before you make any attempt to unlock a phone; there may be some unforeseen consequences down the line if you are unprepared. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsbqs795tDSI5zhI_Op_xPHmni61x_h5X8GKijpy29XIU8QXYuHckIt3rx-QbsmXgU9my400BBXUIK0wi8Xt_6lPrVBDlS26icPeMlM8g92plLbMBhFwKhP0qarIm4-K6AebZqIF2ynWg/s1600/Unlock+Android.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsbqs795tDSI5zhI_Op_xPHmni61x_h5X8GKijpy29XIU8QXYuHckIt3rx-QbsmXgU9my400BBXUIK0wi8Xt_6lPrVBDlS26icPeMlM8g92plLbMBhFwKhP0qarIm4-K6AebZqIF2ynWg/s320/Unlock+Android.jpg&quot; width=&quot;269&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;&lt;u&gt;T-Mobile:&lt;/u&gt;&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Typically you must have a contract with them before they will give you a Unlock code. T-Mobile will provide the code and instructions under certain conditions. Give them a call at their &lt;a href=&quot;http://www.t-mobile.com/Contact.aspx&quot;&gt;customer service&lt;/a&gt; and they will be happy to assist you. Keep in mind that you are entitled to receive an unlock code and may want to push the issue especially if you are a loyal customer(the long-term traveling excuse usually works).&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/how-to-42-how-to-unlock-android-phone.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/how-to-42-how-to-unlock-android-phone.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgsbqs795tDSI5zhI_Op_xPHmni61x_h5X8GKijpy29XIU8QXYuHckIt3rx-QbsmXgU9my400BBXUIK0wi8Xt_6lPrVBDlS26icPeMlM8g92plLbMBhFwKhP0qarIm4-K6AebZqIF2ynWg/s72-c/Unlock+Android.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-4654937019297572034</guid><pubDate>Fri, 09 Dec 2011 05:12:00 +0000</pubDate><atom:updated>2011-12-09T00:13:37.924-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #41: Transfer Files Using BlueTooth Between Two Android Devices</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;Ever &lt;/span&gt;wanted to share some music or videos with another buddy that also has an Android device? Android lets you do that with BlueTooth when you&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt; lack the access to a PC or the internet.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Never heard of BlueTooth? Its esstenially just a wireless communication protocol that enables direct mobile data connection between any two electronic devices. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;Bluetooth is hands down the easiest way for two Android devices to communicate directly&lt;/span&gt; with each other, without the need of a 3rd party. These are instructions on how to pair and transfer files between two Android tablets and phones using BlueTooth and &lt;a href=&quot;https://market.android.com/details?id=com.estrongs.android.pop&amp;amp;feature=search_result#?t=W251bGwsMSwyLDEsImNvbS5lc3Ryb25ncy5hbmRyb2lkLnBvcCJd&quot;&gt;ESFileExplorer&lt;/a&gt;.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;u&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Both Devices must follow these steps:&lt;/span&gt;&lt;/u&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;1) Turn on BlueTooth in settings and select &amp;quot;Visible&amp;quot;(you may want to increase visible timeout)&lt;/span&gt;&lt;br&gt;
&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_AaIpIbUIy_bz7E5V8MgkpqtYczeMjsw8xYO64mL9HL5uShIZQA1I0eE8Tt9xqEf_AsTwDoJY3CftVdKKeSa1ApVheJ5yEFwDBNPGpZ0fgwUwGcp7mAKOzsppWvLjy61sH0l8VyzvYMs/s1600/SC20111208-231354.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_AaIpIbUIy_bz7E5V8MgkpqtYczeMjsw8xYO64mL9HL5uShIZQA1I0eE8Tt9xqEf_AsTwDoJY3CftVdKKeSa1ApVheJ5yEFwDBNPGpZ0fgwUwGcp7mAKOzsppWvLjy61sH0l8VyzvYMs/s320/SC20111208-231354.jpg&quot; width=&quot;200&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;2) Select &amp;quot;Find nearby devices&amp;quot;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/how-to-41-transfer-files-using.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/how-to-41-transfer-files-using.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEg_AaIpIbUIy_bz7E5V8MgkpqtYczeMjsw8xYO64mL9HL5uShIZQA1I0eE8Tt9xqEf_AsTwDoJY3CftVdKKeSa1ApVheJ5yEFwDBNPGpZ0fgwUwGcp7mAKOzsppWvLjy61sH0l8VyzvYMs/s72-c/SC20111208-231354.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-6628326338474183568</guid><pubDate>Thu, 08 Dec 2011 04:13:00 +0000</pubDate><atom:updated>2011-12-07T23:16:32.302-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Reviews</category><title>Android Game Review: Colosseum Heros</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;Gamevil&lt;/span&gt; &lt;a href=&quot;http://us.gamevil.com/news.php?m=newsDetail&amp;amp;no=386&quot;&gt;recently released&lt;/a&gt; Colosseum: Heros&lt;/span&gt;, a &lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;sequel&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt; to the &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;popular &lt;a href=&quot;https://market.android.com/details?id=com.Cocosoft.Colosseum#?t=W251bGwsMSwxLDIxMiwiY29tLkNvY29zb2Z0LkNvbG9zc2V1bSJd&quot;&gt;Colosseum&lt;/a&gt;. The game is basically the extension of the first, with more spells and even more baddies. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The game lets you select between a knight or vampire. The character that is selected has a unique path for the skills and the equipment, which is purchased from the armory screen before each battle. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Like most free games, you also have the option to buy premium items. Once equipped with the spells and equipment, the hero is then thrown into the arena to battle for glory, honor, and gold(exactly as seen below).&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://androidmarket.googleusercontent.com/android/market/com.gamevil.colosseumheroes.marketfree/ss-1280-1-1&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;124&quot; src=&quot;https://androidmarket.googleusercontent.com/android/market/com.gamevil.colosseumheroes.marketfree/ss-1280-1-1&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;a href=&quot;https://androidmarket.googleusercontent.com/android/market/com.gamevil.colosseumheroes.marketfree/ss-1280-0-1&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;124&quot; src=&quot;https://androidmarket.googleusercontent.com/android/market/com.gamevil.colosseumheroes.marketfree/ss-1280-0-1&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Although the content has been extended to great lengths, there is not much more then leveling the character, killing monsters, and buying items. The game is essentially a repetitive hack-n-slash with no story or much substance.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The selling point of &lt;a href=&quot;https://market.android.com/details?id=com.gamevil.colosseumheroes.marketfree&quot;&gt;Colosseum Heros&lt;/a&gt; is the price: &lt;span id=&quot;goog_323203532&quot;&gt;&lt;/span&gt;free (&lt;a href=&quot;https://market.android.com/details?id=com.Cocosoft.Colosseum#?t=W251bGwsMSwxLDIxMiwiY29tLkNvY29zb2Z0LkNvbG9zc2V1bSJd&quot;&gt;Colosseum &lt;/a&gt;is at $.99). There is no reason to turn down a pretty decent game with great looking graphics as this.&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/android-game-review-colosseum-heros.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/android-game-review-colosseum-heros.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://img.youtube.com/vi/WfEMUuLbUFM/default.jpg" height="72" width="72"/><thr:total>1</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-266005721476444967</guid><pubDate>Wed, 07 Dec 2011 01:37:00 +0000</pubDate><atom:updated>2011-12-06T21:46:41.150-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">How To: All Guides</category><title>How-To #39: Get Free SMS &amp; Calls Using Data</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif; font-size: large;&quot;&gt;For&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif; font-size: large;&quot;&gt; parents who can&amp;#39;t afford to pay their kids costly cellular plans, for students who are living off ramen noodles, and finally, for those of us that just refuse to be bounded by a cellular contract, &lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: yellow;&quot;&gt;Android is here with free mobile messaging and minutes&lt;/span&gt;.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif; font-size: large;&quot;&gt;How does free calling and SMS work on the Android? The answer is simple: through the internet. This concept doesn&amp;#39;t just work on phones... In fact, &lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;I can even use my Android tablet to make calls using the microphone for the camera.&lt;/span&gt; The only catch is that my Android device needs to be connected to WiFi, 3G, or 4G data networks.&lt;/span&gt;&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif; font-size: large;&quot;&gt;&lt;a href=&quot;http://3.bp.blogspot.com/hnnoUliBnfmdnOyDaxwryKcdU4ISqv2dD8-4IwZDqeeeblRTFt-kcAE8C8YQSpQhrw&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://3.bp.blogspot.com/hnnoUliBnfmdnOyDaxwryKcdU4ISqv2dD8-4IwZDqeeeblRTFt-kcAE8C8YQSpQhrw&quot; width=&quot;178&quot;&gt;&lt;/a&gt;&lt;a href=&quot;http://2.bp.blogspot.com/U9HP0Jr0jVcpRoWU5ewLCP_1hCDbPhzpbhJTLO55tfCOjpHGjqJOja_B5fJx5YRLzgc&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;http://2.bp.blogspot.com/U9HP0Jr0jVcpRoWU5ewLCP_1hCDbPhzpbhJTLO55tfCOjpHGjqJOja_B5fJx5YRLzgc&quot; width=&quot;178&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif; font-size: large;&quot;&gt;Sure, 3G and 4G plans can be expensive but that can replace the cost of a monthly contract for minutes and texting. Most people are typically around free Wifi networks for most of their day anyways (@work,school,cafe, restaurants, etc) so the data plan shouldn&amp;#39;t be needed. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/how-to-39-get-free-sms-calls-using-data.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/how-to-39-get-free-sms-calls-using-data.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/hnnoUliBnfmdnOyDaxwryKcdU4ISqv2dD8-4IwZDqeeeblRTFt-kcAE8C8YQSpQhrw=s72-c" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7778222113513210379</guid><pubDate>Fri, 02 Dec 2011 01:31:00 +0000</pubDate><atom:updated>2011-12-01T20:31:17.039-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">News</category><category domain="http://www.blogger.com/atom/ns#">Other</category><title>Android 4.0 x86 Live Installation Images Released</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Once again the Android x86 Project team has released the latest version of the Android OS &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;live CDs&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;, Android 4.0 IceCream, for x86 processors(the cpus that is running on your PC). While Android 4.0 still has many bugs and is unavailable on most Android phones, it is worth the install an &lt;/span&gt;&lt;a href=&quot;http://www.androidsim.net/2011/08/how-to-37-install-android-on-virtual.html&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Android Virtual Machine&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt; to see what it has to offer. Download links are below.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;div style=&quot;text-align: left;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;While this release may not seem significant to most Android users, big chip manufacturers now has the ability to use the source code to build a heavy competition against ARM in the mobile market; ARM currently has a monopoly over most of the Android mobile CPU market, since Android was not designed for x86(intel/amd) architecture. With the mobile market constantly expanding, Intel and AMD will no doubt want in on the piece of the profit.&lt;/span&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcyxNxh865dd6_dQIR3JNgmpl0KHrFuAWh6j6FW9tDemhKB6iFV4iowHNzsBK3spMUMk5-KvKnrBrZw1IFt5nWcriX38H0n20MnxkvyTzGcqe59AxVc13t2LW8ff0w8a5s2UdW-pxs9Ps/s1600/Ice_Cream_Sandwich_Logo.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;239&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcyxNxh865dd6_dQIR3JNgmpl0KHrFuAWh6j6FW9tDemhKB6iFV4iowHNzsBK3spMUMk5-KvKnrBrZw1IFt5nWcriX38H0n20MnxkvyTzGcqe59AxVc13t2LW8ff0w8a5s2UdW-pxs9Ps/s320/Ice_Cream_Sandwich_Logo.jpg&quot; width=&quot;320&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/android-40-x86-live-installation-images.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/android-40-x86-live-installation-images.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhcyxNxh865dd6_dQIR3JNgmpl0KHrFuAWh6j6FW9tDemhKB6iFV4iowHNzsBK3spMUMk5-KvKnrBrZw1IFt5nWcriX38H0n20MnxkvyTzGcqe59AxVc13t2LW8ff0w8a5s2UdW-pxs9Ps/s72-c/Ice_Cream_Sandwich_Logo.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-512165898727909826</guid><pubDate>Fri, 02 Dec 2011 00:06:00 +0000</pubDate><atom:updated>2011-12-01T20:31:38.443-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">Reviews</category><title>Android App Review: AirDroid</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;Sand Studio&lt;/span&gt; has now introduced a new Android App that allows the user full control of the Android phone or Android tablet. What makes it great is that you can do all of this from the PC&amp;#39;s &lt;u&gt;web browser&lt;/u&gt;, without ever touching the device. All that is required is installing the app on any Android device.&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;&lt;u&gt;&lt;b&gt;With AirDroid you can:&lt;/b&gt;&lt;/u&gt;&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Access, send, and manage SMS messages&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Manage contacts &lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Uninstall and install apps from Android Market&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Backup apps(they are saved as apk files)&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Manage music and ringtones&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Access phone information(system, battery, status, etc.)&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;color: #111111; font-family: Verdana;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;line-height: 19px;&quot;&gt;- Manage and transfer files&lt;/span&gt;&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgI7BrvJLl9bovs2yAM9CSVagljM3UBGa9qqOVVplrJ8s8tj4c-FcBub8xCAXQx0WRvaxom-HIKq5YrabYKZV9OMSYCfWo0xGp9yAF36EBRyDvkvkbECPSoF198xIBEZ4NfJ36OowApLwo/s1600/unnamed+%25281%2529.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgI7BrvJLl9bovs2yAM9CSVagljM3UBGa9qqOVVplrJ8s8tj4c-FcBub8xCAXQx0WRvaxom-HIKq5YrabYKZV9OMSYCfWo0xGp9yAF36EBRyDvkvkbECPSoF198xIBEZ4NfJ36OowApLwo/s1600/unnamed+%25281%2529.jpg&quot;&gt;&lt;/a&gt;&lt;/div&gt; &lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiN-pchSWXI9G2xYJMLla3BofTubtedEOotbiJvUzBn-qWTFE-XNXqJO1o4D2k9ycr3df4vxS3cpQBnnrV215fMb5LuSphm1gBxEf7KgkDgsFIFYPPegsDt2De7F7zrMz7NhLS-m-g6Jw/s1600/unnamed+%25282%2529.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgiN-pchSWXI9G2xYJMLla3BofTubtedEOotbiJvUzBn-qWTFE-XNXqJO1o4D2k9ycr3df4vxS3cpQBnnrV215fMb5LuSphm1gBxEf7KgkDgsFIFYPPegsDt2De7F7zrMz7NhLS-m-g6Jw/s1600/unnamed+%25282%2529.jpg&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjquFsYr_EwnOmnGGLKT_nCTVbsNwqoS246RTzskH9ckY_SZ8uB_ePx3gaBmTpxxuPxMgS0wx2zOHcpd-f012MAAud4WY3EVO5vNSJhpcdUdGRjzG3yOYlVgriM5ut7N-1q_0d2g8RQ3B8/s1600/unnamed.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em; text-align: center;&quot;&gt;&lt;img border=&quot;0&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjquFsYr_EwnOmnGGLKT_nCTVbsNwqoS246RTzskH9ckY_SZ8uB_ePx3gaBmTpxxuPxMgS0wx2zOHcpd-f012MAAud4WY3EVO5vNSJhpcdUdGRjzG3yOYlVgriM5ut7N-1q_0d2g8RQ3B8/s1600/unnamed.jpg&quot;&gt;&lt;/a&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/12/android-app-review-airdroid.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/12/android-app-review-airdroid.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgI7BrvJLl9bovs2yAM9CSVagljM3UBGa9qqOVVplrJ8s8tj4c-FcBub8xCAXQx0WRvaxom-HIKq5YrabYKZV9OMSYCfWo0xGp9yAF36EBRyDvkvkbECPSoF198xIBEZ4NfJ36OowApLwo/s72-c/unnamed+%25281%2529.jpg" height="72" width="72"/><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-5222926209478218335</guid><pubDate>Wed, 16 Nov 2011 02:09:00 +0000</pubDate><atom:updated>2011-11-15T21:12:24.718-05:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">News</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Android 3.2 For Samsung Galaxy 10.1</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;With Android 4.0 Icecream just over the horizon, Samsung finally decides to upgrade the users of highly popular Galaxy 10.1 with Android 3.2(Read the &lt;a href=&quot;http://developer.android.com/sdk/android-3.2.html&quot;&gt;change log&lt;/a&gt;). While some are &lt;a href=&quot;http://forum.xda-developers.com/showthread.php?t=1346227&quot;&gt;having trouble&lt;/a&gt; with the build, many are successful in the transition. You can grab the file &lt;a href=&quot;http://api.viglink.com/api/click?format=go&amp;amp;drKey=1359&amp;amp;loc=http%3A%2F%2Fforum.xda-developers.com%2Fshowthread.php%3Ft%3D1346227%26page%3D9&amp;amp;v=1&amp;amp;libid=1321406993793&amp;amp;out=http%3A%2F%2Fwww.multiupload.com%2F5V5Y52AMYF&amp;amp;ref=http%3A%2F%2Fforum.xda-developers.com%2Fshowthread.php%3Ft%3D1346227&amp;amp;title=3.2%20Update%20Problem%20US.%20-%20Page%209%20-%20xda-developers&amp;amp;txt=http%3A%2F%2Fwww.multiupload.com%2F5V5Y52AMYF&amp;amp;jsonp=vglnk_jsonp_13214070631821&quot;&gt;Android 3.2 For Odin &lt;/a&gt;| &lt;a href=&quot;http://hotfile.com/dl/135008863/06ca0fd/GT-P7510_XAB_P7510UEKMM_P7510XABKMM_P7510UEKMM.rar.html&quot;&gt;Mirror For Odin(&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: #fbf8f4; color: #111111; line-height: 19px;&quot;&gt;Pass: sampro.pl)&lt;/span&gt;&lt;/a&gt; and flash it with ODIN to begin using it now! Alternatively, you can&lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt; &lt;/span&gt;&lt;a href=&quot;http://www.androidsim.net/2009/08/how-to-9-how-to-flash-to-different-rom.html&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;flash&lt;/a&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt; with CWM using &lt;/span&gt;&lt;a href=&quot;http://api.viglink.com/api/click?format=go&amp;amp;drKey=1359&amp;amp;loc=http%3A%2F%2Fforum.xda-developers.com%2Fshowthread.php%3Ft%3D1345363&amp;amp;v=1&amp;amp;libid=1321408892558&amp;amp;out=http%3A%2F%2Fwww.multiupload.com%2F9H5A377E0X&amp;amp;ref=http%3A%2F%2Fforum.xda-developers.com%2Fforumdisplay.php%3Ff%3D1053&amp;amp;title=%5BROM%5D%5BSTOCK%5D%20P7500JJKJ6%20Stock%20Rom%20(Android%203.2)%20-%20xda-developers&amp;amp;txt=http%3A%2F%2Fwww.multiupload.com%2F9H5A377E0X&amp;amp;jsonp=vglnk_jsonp_13214088936501&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Android 3.2 for CWM&lt;/a&gt;. &lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Instructions on flashing with Odin is below.&lt;/span&gt;&lt;br&gt;
&lt;div&gt;&lt;div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;br&gt;
&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;b&gt;Requirements&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;http://www.samsung.com/us/support/downloads/wi-fi-tabs/GT-P7510MAVXAB&quot;&gt;Samsung 10.1 USB Driver&lt;/a&gt;(Find your device and run the exe)&lt;/span&gt;&lt;/div&gt;&lt;div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/11/android-32-for-samsung-galaxy-101.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/11/android-32-for-samsung-galaxy-101.html</link><author>noreply@blogger.com (Tony Le)</author><thr:total>2</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-7450347474888643214</guid><pubDate>Sun, 23 Oct 2011 17:37:00 +0000</pubDate><atom:updated>2011-10-23T13:37:15.379-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">Tips and Tricks</category><title>Choose the Perfect Android Anti-Virus Software for You</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;Do you know which features your Android antivirus software actually needs? Aside from its ability to clean up and determine computer viruses, adware and spyware programs, it has to have an updated database of well-known virus threats and it has to be able to look for infections on important system files, as well.&lt;br&gt;
&lt;br&gt;
Other than that, mobile application inspections for viruses and real-time scanning would be important features to watch out for along with anti-theft protection. The program shouldn&amp;#39;t have a hard time finding the device in case it is stolen, either, and it should be able to keep the information on it safe and secure. Another feature you might want to take into consideration would be the ability to check for SMS service content.&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNnG6M63A05c5aeNXhjzIi4z12vy0kKJegUAwTa6mfczhVB9MaHX0bG8-2zwqPfnqnRV_ZmCkjpEm_IR45vaL3ncTFThn5MM6tCpZFcn_YUBLpCf1kus7T5qZ5Wp7LXzOE-hnvLxAhGbk/s1600/virus-stats-08.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;232&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNnG6M63A05c5aeNXhjzIi4z12vy0kKJegUAwTa6mfczhVB9MaHX0bG8-2zwqPfnqnRV_ZmCkjpEm_IR45vaL3ncTFThn5MM6tCpZFcn_YUBLpCf1kus7T5qZ5Wp7LXzOE-hnvLxAhGbk/s320/virus-stats-08.jpg&quot; width=&quot;320&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/10/choose-perfect-android-anti-virus.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/10/choose-perfect-android-anti-virus.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiNnG6M63A05c5aeNXhjzIi4z12vy0kKJegUAwTa6mfczhVB9MaHX0bG8-2zwqPfnqnRV_ZmCkjpEm_IR45vaL3ncTFThn5MM6tCpZFcn_YUBLpCf1kus7T5qZ5Wp7LXzOE-hnvLxAhGbk/s72-c/virus-stats-08.jpg" height="72" width="72"/><thr:total>3</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-6832866541733112208</guid><pubDate>Wed, 05 Oct 2011 17:58:00 +0000</pubDate><atom:updated>2011-10-05T16:48:39.347-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">Other</category><title>What Is Rooting On Android? Is Rooting Right For You?</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;People who have recently purchased a mobile phone or tablet computer which runs on the Android operating system may have been made aware of the potential to root the device. Typically most people will be completely unaware of what this entails, in which case it would be pertinent to ask “&lt;b&gt;what is rooting on Android?”&lt;/b&gt;&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;So What is Rooting? &lt;/span&gt;&lt;/b&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Rooting Android devices essentially means giving the owners extended privileges. This would allow them to be able to customize various aspects of the software which would otherwise be very strictly controlled. Originated from Linux, the term &amp;quot;Root&amp;quot; is coined from the owner having to obtain superuser rights from logging in as a &amp;quot;Root&amp;quot; user/id. Thus, the process where the user goes through to obtain superuser permissions on an Android device(linux based) it is referred to as &amp;quot;Rooting&amp;quot;. &lt;/span&gt;&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiedHFhH6JQ6JVzgETRVwLLCqYm_Iq1pouwLlztNimZAhKXdbMqRip1HMYZFFE2aGAv5z8iYiUrEhz7847w1nP6lXZmLxrquInIp8Q4Ck9oCjoWTHhpkjYMbyjjwOUtTmKbr_eCOAH6u4Q/s1600/droid2rooted2.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;200&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiedHFhH6JQ6JVzgETRVwLLCqYm_Iq1pouwLlztNimZAhKXdbMqRip1HMYZFFE2aGAv5z8iYiUrEhz7847w1nP6lXZmLxrquInIp8Q4Ck9oCjoWTHhpkjYMbyjjwOUtTmKbr_eCOAH6u4Q/s200/droid2rooted2.jpg&quot; width=&quot;110&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;b&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;How Do I Get Root?&lt;/span&gt;&lt;/b&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;The method of &lt;a href=&quot;http://www.androidsim.net/2009/08/how-to-2-how-to-root.html&quot;&gt;rooting&lt;/a&gt; Android devices varies depending on the make and &lt;a href=&quot;http://www.androidsim.net/2011/05/list-of-all-current-smartphone-rooting.html&quot;&gt;model&lt;/a&gt; of the phone or tablet. Android is an operating system which is used in handsets by many different manufacturers, and &lt;span class=&quot;Apple-style-span&quot; style=&quot;color: red;&quot;&gt;so it is important for anybody who is thinking of attempting to root their device to carefully research the correct specific procedure&lt;/span&gt;. Any mistakes which are made could render the device useless, and since the procedure invalidates the warranty this could be very costly to the owner.&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/10/what-is-rooting-on-android-is-rooting.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/10/what-is-rooting-on-android-is-rooting.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEiedHFhH6JQ6JVzgETRVwLLCqYm_Iq1pouwLlztNimZAhKXdbMqRip1HMYZFFE2aGAv5z8iYiUrEhz7847w1nP6lXZmLxrquInIp8Q4Ck9oCjoWTHhpkjYMbyjjwOUtTmKbr_eCOAH6u4Q/s72-c/droid2rooted2.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-6091903285300419232</guid><pubDate>Wed, 28 Sep 2011 19:47:00 +0000</pubDate><atom:updated>2011-09-29T08:40:00.681-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">News</category><category domain="http://www.blogger.com/atom/ns#">Reviews</category><title>Android Game Review: Jelly Defense</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-size: large;&quot;&gt;The&lt;/span&gt; Jellies of planet &amp;quot;Diploglobe&amp;quot; are in a bind, they are getting invaded by strange alien species seeking to steal the Jellie&amp;#39;s emeralds. This is where you come in. You are to help the jellies construct intricate tower defenses to ward off the alien invaders. Fear not though, as you destroy enemies and collect coins from the discarded alien remains, the Jellies will be able to advance and develop stronger tower technologies to help you in the Jellie&amp;#39;s resistance. &lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;However, don&amp;#39;t think of &lt;a href=&quot;https://market.android.com/details?id=pl.idreams.jellydefense&amp;amp;feature=search_result&quot;&gt;Jelly Defense&lt;/a&gt; as the traditional tower defense, where positioning and upgrades play the critical roles; Jelly defense is more about spells, tower selection, and strategic &amp;quot;trading&amp;quot; of towers. The reason for this is that the enemies comes in two favors: red and blue. The towers can only attack monsters relative to their own corresponding colors. And as the levels becomes more complex, you will soon notice that the selection and placement of the towers that defeated the previous wave will not be able to handle upcoming onslaught... Therefore, quick adjustments is constantly needed.&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF8vJzyiyqZGijBpwF87N0wH074v2uyxpDO8RNyidXuzt2rfuB6Uxa8x3mXuGxJUa_yFvMudzXu2WnmRDwJjGi4yfBxvHTg-SKV5JMY6Piu1i2DYAzzDui5kajhBNXUY0PVoCPh0SIwUQ/s1600/mzl.gxdbfmff.320x480-75.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;132&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF8vJzyiyqZGijBpwF87N0wH074v2uyxpDO8RNyidXuzt2rfuB6Uxa8x3mXuGxJUa_yFvMudzXu2WnmRDwJjGi4yfBxvHTg-SKV5JMY6Piu1i2DYAzzDui5kajhBNXUY0PVoCPh0SIwUQ/s200/mzl.gxdbfmff.320x480-75.jpg&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjr_mqPgD03wUnMIV-ygLhhQv_eb2S2cnt58fXOK7FRf2fqZaoVoRM43Zf3Wh156w5bPbkZu8q7e4cB4TkxbqTev-p94s52_uoUud7WlHobuJQKFHdvK7BG-qHmoO0Mnqb1hoeTAkErTog/s1600/jd_touch_arcade.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;132&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjr_mqPgD03wUnMIV-ygLhhQv_eb2S2cnt58fXOK7FRf2fqZaoVoRM43Zf3Wh156w5bPbkZu8q7e4cB4TkxbqTev-p94s52_uoUud7WlHobuJQKFHdvK7BG-qHmoO0Mnqb1hoeTAkErTog/s200/jd_touch_arcade.jpg&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp9iIVRc9bM-D1_eiu7JsXlxQpR2m5DzuAOD4GxbYhtAAL2Zm4qoSJYR9l-YMoLUitUG-a7C-DjmLUCYhXWmYHnR4Si2N0vtYKUvfjK6GSryRvRxjRPY5qw9IMJzaoCXDbtsN8_zfzxMQ/s1600/jelly-defense-screenshots-1.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;148&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjp9iIVRc9bM-D1_eiu7JsXlxQpR2m5DzuAOD4GxbYhtAAL2Zm4qoSJYR9l-YMoLUitUG-a7C-DjmLUCYhXWmYHnR4Si2N0vtYKUvfjK6GSryRvRxjRPY5qw9IMJzaoCXDbtsN8_zfzxMQ/s200/jelly-defense-screenshots-1.jpg&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWBbGiIXUzuf9Uc9XRM-670UoizzfvyH_8veIT8uZ83WBEUNrT1xVwXXgpd7KxYvTX-ie6kxT8BbRKn7HN5DJZ-IyR_l8cVZPWmk6PkbrjIW_sW5W1mzvdw2sgTIvyfaUgRY0T67abgvs/s1600/mzl.gxdbfmff.320x480-75.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;132&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhWBbGiIXUzuf9Uc9XRM-670UoizzfvyH_8veIT8uZ83WBEUNrT1xVwXXgpd7KxYvTX-ie6kxT8BbRKn7HN5DJZ-IyR_l8cVZPWmk6PkbrjIW_sW5W1mzvdw2sgTIvyfaUgRY0T67abgvs/s200/mzl.gxdbfmff.320x480-75.jpg&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/09/android-game-review-jelly-defense.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/09/android-game-review-jelly-defense.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgF8vJzyiyqZGijBpwF87N0wH074v2uyxpDO8RNyidXuzt2rfuB6Uxa8x3mXuGxJUa_yFvMudzXu2WnmRDwJjGi4yfBxvHTg-SKV5JMY6Piu1i2DYAzzDui5kajhBNXUY0PVoCPh0SIwUQ/s72-c/mzl.gxdbfmff.320x480-75.jpg" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-3540507288635199016</guid><pubDate>Sat, 24 Sep 2011 19:26:00 +0000</pubDate><atom:updated>2011-09-24T15:26:31.046-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">Information</category><category domain="http://www.blogger.com/atom/ns#">Other</category><category domain="http://www.blogger.com/atom/ns#">Reviews</category><title>Android App Review: Email App Alternative</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;While the stock email app on Android Tablets and Phones is amazing enough, there are many reasons as to why an alternative app is needed. Whatever the case, Android has a large establishment of alternative email apps avilable on its Andorid market. One of those app is the &lt;a href=&quot;http://code.google.com/p/k9mail/&quot;&gt;K-9 Mail&lt;/a&gt;.&lt;/span&gt;&lt;br&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;Of all the email apps I have used, this would be hands down the best alternative. Not only is it free, it incorporates and integrates all your email into one application. The app has a similar feel to that of Microsoft Outlook in that all mail from every account is displayed on one huge list.&lt;/span&gt;&lt;br&gt;
&lt;br&gt;
&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgocbO0Zns4rEd2fyGhDGf4T5GEZih4PDd_an_n0XCe8cuOYlNbatR3ymNfFuJj66bpkyWEefsOUE-1SZ_aUXA0hQlf4Oe1sJ0Rk6WSR58iCx8cF8Lzk0LV0rN4wsnFzPT2BakJ449h7HA/s1600/ss-320-0-6.jpg&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; float: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;-webkit-text-decorations-in-effect: none; color: black;&quot;&gt;&lt;/span&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvaRVnNr4k3ryPzQfP5kVtJFUU9BlNh32Vxgosbf4l0FZ_kZHmrMhIodgKIcRavPOdE-GXg4Qbx_ZPA2BZtLHKE_jlAvmR0nM-chxsINGEYaUgXYJwgxyoTEU-zvIGy80blUDv51dxH5w/s1600/ss-320-1-6.png&quot; imageanchor=&quot;1&quot; style=&quot;clear: left; margin-bottom: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvaRVnNr4k3ryPzQfP5kVtJFUU9BlNh32Vxgosbf4l0FZ_kZHmrMhIodgKIcRavPOdE-GXg4Qbx_ZPA2BZtLHKE_jlAvmR0nM-chxsINGEYaUgXYJwgxyoTEU-zvIGy80blUDv51dxH5w/s320/ss-320-1-6.png&quot; width=&quot;213&quot;&gt;&lt;/a&gt;&lt;img border=&quot;0&quot; height=&quot;320&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEgocbO0Zns4rEd2fyGhDGf4T5GEZih4PDd_an_n0XCe8cuOYlNbatR3ymNfFuJj66bpkyWEefsOUE-1SZ_aUXA0hQlf4Oe1sJ0Rk6WSR58iCx8cF8Lzk0LV0rN4wsnFzPT2BakJ449h7HA/s320/ss-320-0-6.jpg&quot; width=&quot;213&quot;&gt;&lt;/div&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;/div&gt;&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/09/android-app-review-email-app.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/09/android-app-review-email-app.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjvaRVnNr4k3ryPzQfP5kVtJFUU9BlNh32Vxgosbf4l0FZ_kZHmrMhIodgKIcRavPOdE-GXg4Qbx_ZPA2BZtLHKE_jlAvmR0nM-chxsINGEYaUgXYJwgxyoTEU-zvIGy80blUDv51dxH5w/s72-c/ss-320-1-6.png" height="72" width="72"/><thr:total>0</thr:total></item><item><guid isPermaLink="false">tag:blogger.com,1999:blog-1245130549955868684.post-2967301883520065737</guid><pubDate>Thu, 22 Sep 2011 00:13:00 +0000</pubDate><atom:updated>2011-09-21T20:13:39.004-04:00</atom:updated><category domain="http://www.blogger.com/atom/ns#">Apps</category><category domain="http://www.blogger.com/atom/ns#">News</category><category domain="http://www.blogger.com/atom/ns#">Reviews</category><title>Android Game Review: DESTINIA</title><description>&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;background-color: #f8f7f4; font-family: Verdana, sans-serif;&quot;&gt;GAMEVIL, developer of the popular Zenonia and Baseball Superstar series, recently released another RPG on the Android Market - &lt;a href=&quot;https://market.android.com/details?id=game.destiniaeng&amp;amp;rdid=game.destiniaeng&amp;amp;rdot=1&quot;&gt;Destinia&lt;/a&gt;. Like most of the other GAMEVIL games, this free to play RPG plans to offer unlocks, specials, and upgrades for ingame money purchased by real, hard cash. &lt;/span&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;In this &amp;quot;action&amp;quot; RPG, you will encounter combinations of enemies and puzzles with a single character in form of one of three classes: thief, warrior, or gunner - yes, they took out the mage class. The gameplay is almost identical to Zenonia, while the story takes on the more serious note(summary and video below).&lt;/span&gt;&lt;br&gt;
&lt;div dir=&quot;ltr&quot; style=&quot;text-align: left;&quot; trbidi=&quot;on&quot;&gt;&lt;div class=&quot;separator&quot; style=&quot;clear: both; text-align: center;&quot;&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkk_tszi2iemJr_Iygg5XutLSzUHKKGq9owtqikpo9UoDDrXYKqPPrp70_GARdZ4Wct0gFMMF3Z6t5XXtXI0UJZTPu3hT9PmZNbbgpLn4MfvtgdIiQrPiXqmsPC-aFKMra-g5-wjAmzxE/s1600/SC20110921-192350%255B1%255D.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;125&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkk_tszi2iemJr_Iygg5XutLSzUHKKGq9owtqikpo9UoDDrXYKqPPrp70_GARdZ4Wct0gFMMF3Z6t5XXtXI0UJZTPu3hT9PmZNbbgpLn4MfvtgdIiQrPiXqmsPC-aFKMra-g5-wjAmzxE/s200/SC20110921-192350%255B1%255D.jpg&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;a href=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3r3XENzgnTUJbQyoDA4-hrBmmbyn1UTkpmYHgFKbfa-M712Mi4CltZ3II7j8uOgzKRc7f_bd-MYlRL7VvD4w4q3GM28vJztnaGVZPpzDvTvCPeOrQ30wmMe-W6_dtuYBQ-PJfnPS8GKE/s1600/SC20110921-192435%255B1%255D.jpg&quot; imageanchor=&quot;1&quot; style=&quot;margin-left: 1em; margin-right: 1em;&quot;&gt;&lt;img border=&quot;0&quot; height=&quot;125&quot; src=&quot;https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEj3r3XENzgnTUJbQyoDA4-hrBmmbyn1UTkpmYHgFKbfa-M712Mi4CltZ3II7j8uOgzKRc7f_bd-MYlRL7VvD4w4q3GM28vJztnaGVZPpzDvTvCPeOrQ30wmMe-W6_dtuYBQ-PJfnPS8GKE/s200/SC20110921-192435%255B1%255D.jpg&quot; width=&quot;200&quot;&gt;&lt;/a&gt;&lt;/div&gt;&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;If you get bored of the 20-30hours of the campaign, there is also the multiplayer mode, where you can challenge other players, sell items, read mail, and many more.&lt;/span&gt;&lt;br&gt;
&lt;span class=&quot;Apple-style-span&quot; style=&quot;font-family: Verdana, sans-serif;&quot;&gt;&lt;/span&gt;&lt;br&gt;
&lt;/div&gt;&lt;/div&gt;&lt;a href=&quot;http://android-simplicity.blogspot.com/2011/09/android-game-review-destinia.html#more&quot;&gt;Read more »&lt;/a&gt;</description><link>http://android-simplicity.blogspot.com/2011/09/android-game-review-destinia.html</link><author>noreply@blogger.com (Tony Le)</author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEjkk_tszi2iemJr_Iygg5XutLSzUHKKGq9owtqikpo9UoDDrXYKqPPrp70_GARdZ4Wct0gFMMF3Z6t5XXtXI0UJZTPu3hT9PmZNbbgpLn4MfvtgdIiQrPiXqmsPC-aFKMra-g5-wjAmzxE/s72-c/SC20110921-192350%255B1%255D.jpg" height="72" width="72"/><thr:total>0</thr:total></item></channel></rss>