Solution: Failure: -INSTALL_FAILED_OLDER_SDK

Problem: Failure: -INSTALL_FAILED_OLDER_SDK

Solution:

The android:minSdkVersion is higher than the device you are trying to install it on. 

Determine the device android version and change the android:minSdkVersion to that version or lower. 

1. Open the AndroidManifest.xml file

2. Change the    android:minSdkVersion to lower.
Example:  Change from 11 to 10. 
     <uses-sdk
        android:minSdkVersion="10"
        android:targetSdkVersion="17" />
3. Compile and run!