Wednesday, July 15, 2015

Android Vs iOS

Google's Android and Apple's iOS are operating systems used primarily in mobile technology, such as smartphones and tablets. Android, which is Linux-based and partly open source, is more PC-like than iOS, in that its interface and basic features are generally more customizable from top to bottom. However, iOS' uniform design elements are sometimes seen as being more user-friendly.
You should choose your smartphone and tablet systems carefully, as switching from iOS to Android or vice versa will require you to buy apps again in the Google Play or Apple App Store. Android is now the world’s most commonly used smartphone platform and is used by many different phone manufacturers. iOS is only used on Apple devices, such as the iPhone.
Ads by ExstraCouponAd Options

Comparison chart

Android

iOS

Developer Google Apple Inc.
Initial release September 23, 2008 July 29, 2007
Source model Open source Closed, with open source components.
Customizability A lot. Can change almost anything. Limited unless jailbroken
Easy media transfer depends on model with desktop application
Available on Many phones and tablets, including Kindle Fire(modified android), LG, HTC, Samsung, Sony, Motorola, Nexus, and others. Also, Google Glasses iPod Touch, iPhone, iPad, Apple TV (2nd and 3rd generation)
Messaging Google Hangouts iMessage
App store Google Play – 1,000,000+ apps. Other app stores like Amazon and Getjar also distribute Android apps. (unconfirmed ".APKs") Apple app store – 1,000,000+ apps
Video chat Google Hangouts Facetime
OS family Linux OS X, UNIX
Programmed in C, C++, Java C, C++, Objective-C
Dependent on a PC or a Mac No No
Open source Kernel, UI, and some standard apps The iOS kernel is not open source but is based on the open-source Darwin OS.
Widgets Yes No, except in NotificationCenter
Call features supported Auto-respond Auto-respond, call-back reminder, do not disturb mode
Internet browsing Google Chrome (or Android Browser on older versions; other browsers are available) Mobile Safari (Other browsers are available)
Interface Touch screen, Smartwatch Touch screen
Voice commands Google Now (on newer versions) Siri
Maps Google Maps Apple Maps
Market share 81.5% of smartphones globally (2014), 3.7% of tablets in North America (as of Jan'13) and 44.4% of tablets in Japan (as of Jan'13). In the United States in Q1 2013 - 52.3% phones, 47.7% tablets. 14.8% of smartphones globally (2014), 22.8% of tablets globally (2014), 87% of tablets in North America (as of Jan'13) and 40.1% of tablets in Japan (as of Jan'13)
Available language(s) 32 Languages 34 Languages
Latest stable release Android 5.0.1 (lollipop), (November 2014) 8.1 (March 10, 2015)
Device manufacturer Google, LG, Samsung, HTC, Sony, ASUS, Motorola, and many more Apple Inc
Upcoming releases/Release dates Unknown Unknown
Working state Current Current
Website android.com apple.com

Tuesday, July 14, 2015

Why You Should Root Your Android Device??

I’m going to explain what rooting your Android device means and why it’s so awesome to do it. What does ‘Rooting an Android device’ actually mean? It means giving yourself ‘root’, or
admin rights. This means that you are able to edit system files which, normally, wouldn’t be accessible to normal users.
What does that mean? Well, it means that you or other apps that only work on rooted devices, can access and change things like your camera flash, notification light and many other things. You’re basically tearing down the restriction walls of your firmware. It’s similar to jailbreaking an Apple device or changing from a normal user to an administrator on a Windows machine. Does rooting void the warranty? Let me get that immediately out of the way: Yes, rooting an Android device voids the warranty. That’s a fact. Same thing with jailbreaking an Apple device. But, thankfully, it’s not difficult to “un-root” a
device and to flash a stock ROM or a manufacturer supplied ROM onto the phone. After doing that, your device won’t show any sign that it used to be rooted, thus making you eligible for any warranty claims. Benefits of rooting an Android phone or tablet. Having admin rights opens up many new possibilities to customize your device and improve your Android experience.
Thank you friends for reading this.

Friday, July 10, 2015

Set Up an Android API Key for Google

It took me some time to figure out all the steps to get my Android
apps set up to use Google Maps.  Hopefully this will spare you some
time.  First I'll explain how the process goes when you don't have any problems.  If you're having problems, troubles I ran into when I upgraded from SDK 1.1 to 1.5.

Open a command prompt and navigate to a file called debug.keystore. The location of this file depends on what OS you are using. I use Windows XP and my debug.keystore file is located at C:\Documents and Settings\User\.android.

As a side note, before the Android 1.5 SDK came out, my debug.keystore file was located in a different location (C:\Documents and Settings\HP_Administrator\Local Settings\Application Data\Android). When I later updated to 1.5 I ran into all sorts of problems getting the maps to work.

if you use a Mac or Linux OS, I've discovered that you'll find the debug.keystore file at: ~/.android/.


The debug.keystore contains a digitial certificate that android uses to launch applications on the emulator. The certificate is called 'androiddebugkey'.  We'll need to get some an MD5 hash for this certificate in order register for our map api key.


Hopefully you've located the debug.keystore file, so now we'll use Java's keytool utility to get the MD5.

I use XP so I navigated to the proper directory by opening a command prompt and typing:
cd C:\Documents and Settings\HP_Administrator\.android

Once you've navigated to the proper directory for your os, type this in...
keytool -list -alias androiddebugkey -storepass android -keypass android -key
store debug.keystore

Once you hit the enter key, you'll see something like this (the actual MD5 that we're interested in is the last line):
androiddebugkey, Mar 10, 2009, PrivateKeyEntry,
Certificate fingerprint (MD5): D1:16:4A:BD:73:73:A4:56:9D:CD:9A:44:A2:6C:11:AC

Now open your browser and go to the following url...
http://code.google.com/intl/ja/android/maps-api-signup.html

Accept the agreement and paste the md5 that the key tool returned to you, in my case it was something like...
D1:16:4A:BD:73:73:A4:56:9D:CD:9A:44:A2:6C:11:AC

Then press "Generate API Key" and you'll be redirected to a page that has your api key.

Now
that you have the api key, you can use it in the main.xml layout file
of your MapTest application. Here's what mine looks like:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">
    <com.google.android.maps.MapView
        android:id="@+id/mapview1"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:enabled="true"
        android:clickable="true"
        android:apiKey="0q7NUYm4bgzeXlqXtKYVPJDRWUJmt8Cu0gvbWMx"
        />
</LinearLayout>

You'll also have to add some entries to your manifest file, here's what mine looks like...

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
      package="com.remwebdevelopment.maptest"
      android:versionCode="1"
      android:versionName="1.0.0">
    <application android:icon="@drawable/icon" android:label="@string/app_name">
        <!-- this was the kicker - had to import the library com.google.android.maps!!! -->
        <uses-library android:name="com.google.android.maps" />
        <activity android:name=".MapTest"
                  android:label="@string/app_name">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
    <!--make sure you add the following permissions to your app!!!-->
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.INTERNET">
    </uses-permission>
    <uses-permission
        xmlns:android="http://schemas.android.com/apk/res/android"
        android:name="android.permission.ACCESS_FINE_LOCATION">
    </uses-permission>
</manifest>

Here's what my MapActivity looks like(note that it extends MapActivity, not Activiy)...

package com.remwebdevelopment.maptest;

import com.google.android.maps.MapActivity;


import android.os.Bundle;

public class MapTest extends MapActivity {

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        //you could get a reference to the map view from the main.xml
        //layout like this...
        //mMapView = (MapView)findViewById(R.id.mapview1);
    }

    //you must provide an implementation for isRouteDisplayed()
    //when you extend MapActivity...
    @Override
    protected boolean isRouteDisplayed() {
    return false;
    }
}


You should see a map of the world when you run it.
Hopefully this will get you up and running.  I have other code samples
that might be helpful, I'll be posting them soon.



If you're having problems, I might be able to help you by sharing my struggle to get the maps working after I updated from the 1.1 SDK to 1.5

Android paid apps for free download

An app market to download any paid application or game for free.
  • .app store
  • .apk download
  • .android app
Free Store Description from Publisher:
Now, with Free Store App, you can download any paid application or game for free. No need to buy applications or search for apks, etc... all what you need is available in one app.
watch the video and follow the steps.
ENJOY FREE APPLICATIONS!Rate Us 5 stars to keep the hard work.

Download Free Store 1.6 APK ( 835k)

Related Searches for Free Store APK:
app store | apk download | android app |

Friday, July 3, 2015

Download Blackmart APK Free

One of the great apps for downloading Android Apps. It allows user to download android apps from black market (Premium Android Apps) for free before buying. This is great because you will only spend money on something that you like and make sure you are not paying for sh!t you don’t like. It is one of the favorite Apps among android users because you can download full apk of any Android App from the black Market.

Blackmart Alpha is not available on Google Play Store anymore.  But fortunately apk of blackmart alpha is available across the internet and also you can download apk from this page also.

Ways to Install Blackmart Alpha

You cannot directly install blackmart from Google Play store because it is not available on store. The reason is that its against Google Play Store’s terms of service. So, you have to download blackmart alpha apk manually and install it from you Android file manager. This can also be done if you are using SD Card. Download BlackMart Alpha APK to your PC. Transfer it to your SD card and insert SD card to your Android Device, then Install it from there. Note that you have to allow installations from Unknown Sources to your Device from settings if you want to install any app from its apk file.

Download Free Here 

Wednesday, July 1, 2015

Meaning to root a phone and tools



Rooting an Android device opens its core functions that aren’t available when you buy it. One of the major benefits is the ability to install apps to the SD card, which saves space on the device. Rooting also enables you to install the custom versions of Android with even more custom features that emerge from the XDA Community. Rooting a phone can potentially damage a phone beyond repair, so be meticulous and careful if you choose to root your Android phone. For more on rooting, read our explanatory post on using and understanding root terms.

Get File Here

Best way and tools to create an eBook for Android



Its  simple to make Ebook just create all the documents in ms word file and then search online about word to PDF converter and its all done.
      Enjoy....

What is Android



Android is Google application software that is found in most of the technologically advanced phones that are being developed in these modern times. Though this software is still new in the market and most people wonder “what is Android” when they first get to hear about it, news about it is spreading like never before and it is taking over the mobile phone industry. 6Sense Technologies offers the best of Android being developed in the market.
With an Android phone you can get to customize your phone in the most preferable way. This is made possible by the fact that different individuals have different preferences which is clearly evident to the developers of this software. The phone gives individuals a chance to look up for information on the internet from their phones just as they would do it on a computer system. Getting directions and looking up for different kinds of information has never been easier. With the Android individuals get to access any Google service without any difficulty making it even better. It is a phone that is perfect for social networking since it has a number of apps that can be used to check the different social networking accounts and profiles.
The Android has the feature of setting reminders from a desktop and it becomes accessible on the phone. In addition to this individuals can send links to their computers and from it using their phones and vice versa. Android also backs up contacts automatically ensuring that all your contacts are safe and secure at all times. This requires individuals to create a Google Account when setting up any Android phone. If you lose your phone therefore you can be sure of recovering them once you have another Android phone as long as you have signed in using your account. We ensure that we give our clients the best Android phones that are available in the market with the latest designs and styles.