3

我正在尝试使用 Aide 从我的手机和平板电脑上处理我的 android 应用程序。我不断收到数百个错误。似乎一次只检测一个库项目。我可以通过删除一个库并添加一个不同的库来更改我得到的错误(我正在使用三个)

有没有人在助手中成功使用了多个项目库,并且可能能够提供一些帮助?

我的项目 。属性如下所示:

[Eclipse references (I think)]
android.library.reference.1=../../../../libraries/android-greendroid/GreenDroid
android.library.reference.2=../../../../libraries/ActionBarSherlock/library

[Aide references]
android.library.reference.1=/storage/extSdCard/code/android-actionbarsherlock/library
android.library.reference.1=/storage/extSdCard/code/android-facebook/facebook
android.library.reference.1=/storage/extSdCard/code/android-greendroid/GreenDroid
android.library.reference.1=/storage/extSdCard/code/android-actionbarsherlock/library
android.library.reference.1=/storage/extSdCard/code/myproject/android/free

因此,助手引用都是 0.1,并且它们之间没有新行。

4

1 回答 1

1

我也遇到了同样的问题,并像在 eclipse 中一样修复了这个格式化引用。

像这样:

[Eclipse references]
android.library.reference.1=../../../../libraries/android-greendroid/GreenDroid       
android.library.reference.2=../../../../libraries/ActionBarSherlock/library

[Aide references]
android.library.reference.1=/storage/extSdCard/code/android-actionbarsherlock/library
android.library.reference.2=/storage/extSdCard/code/android-facebook/facebook
android.library.reference.3=/storage/extSdCard/code/android-greendroid/GreenDroid
android.library.reference.4=/storage/extSdCard/code/android-actionbarsherlock/library
android.library.reference.5=/storage/extSdCard/code/myproject/android/free

您无法在 AIDE 中编辑 project.properties,因此请使用文本编辑并修复此问题。将输入放在正确的位置并固定参考号;)

于 2013-09-02T23:04:13.780 回答