我尝试使用从他们网站下载的源代码运行FTDI超级终端。这是AndroidManifest.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ftdi.j2xx.hyperterm"
android:versionCode="2"
android:versionName="1.0">
<uses-sdk android:minSdkVersion="13" />
<uses-feature android:name="android.hardware.usb.host" />
<application
android:icon="@drawable/icon"
android:label="@string/app_name" >
<activity
android:name="com.ftdi.j2xx.hyperterm.J2xxHyperTerm"
android:configChanges="keyboardHidden|orientation|screenSize"
android:label="@string/app_name"
android:launchMode="singleTask" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED" />
</intent-filter>
<meta-data
android:name="android.hardware.usb.action.USB_DEVICE_ATTACHED"
android:resource="@xml/device_filter" />
</activity>
</application>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
</manifest>
这一行是问题所在:
android:name="com.ftdi.j2xx.hyperterm.J2xxHyperTerm"
“无法解析符号”......
当我查看文件夹“com.ftdi.j2xx.hyperterm”时,有三个类:BuildConfig,Manifest和R.但是没有J2xxHyperTerm。我认为官方源代码中没有错误,但我不知道我在这里缺少什么......