//Not tatgeting the latest versions of Android; compatibility modes apply. Consider testing and updating this version.Consult the android os Build VERSION_CODES javadoc for details
 

라는 오류가 떳는데요

구글 번역기 돌려보니까

안드로이드의 최신 버전을 tatgeting하지, 호환성 모드가 적용됩니다. 자세한 내용은 안드로이드 OS 빌드 VERSION_CODES javadoc을 테스트하고이 version.Consult를 업데이트

 

 

뭐 업데이트 하라는거 같은데..

매니 패스트 경고 인데요

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.framework"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="16" />
    <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name="com.framework.GameActivity"
            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>