I am a beginner to Android Development. I created a Hello World Application in Android Studio. I tried using my phone through ADB to debug my app since I have heard the Android emulators are painfully slow. However, I had received an error when it was trying to install into my phone:
Failure [INSTALL_FAILED_OLDER_SDK]
My phone is the Samsung Galaxy S4 (M919) with my min API level set at 15, so I thought that can't be right since I am running Kit Kat. Could Cyanogenmod be a problem as that is what I am running?
I searched and found that many others have had this problem, but I still have not found a solution (maybe due to my incompetence and just didn't understand it, but at least I don't think it is).
Thanks in advance
EDIT - manifest:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.brinith.helloworld" >
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
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>
</manifest>