我尝试启动cocos2d项目,这是我的AndroidManifest.xml
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="farzadmo.farzad"
android:versionCode="1"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="9"/>
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="farzadmo.farzad"
android:label="@string/app_name" />
<uses-feature android:glEsVersion="0x00020000" />
<application android:label="@string/app_name"
android:icon="@drawable/icon">
<uses-library android:name="android.test.runner" />
<activity android:name="org.cocos2dx.cpp.AppActivity"
android:label="@string/app_name"
android:screenOrientation="landscape"
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
android:configChanges="orientation">
<!-- Tell NativeActivity the name of our .so -->
<meta-data android:name="android.app.lib_name"
android:value="cocos2dcpp" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<supports-screens android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"/>
<uses-permission android:name="android.permission.INTERNET"/>
</manifest>
在第一次我得到错误,我用这个代码解决它们
<instrumentation android:name="android.test.InstrumentationTestRunner"
android:targetPackage="farzadmo.farzad"
android:label="@string/app_name" />
和
<uses-library android:name="android.test.runner" />
现在已经修好了,AVD推出并安装了应用程序,但现在我得到了这个&#34;警告:没有使用android.test.InstrumentationTestRunner&#34;这个错误&#34;无法启动测试&#34;在Eclipse和app上停止了AVD。