1

I'm a beginner in Android development (and in Java too). I'm trying to compile the Financisto open source project which uses GreenDroid. I've managed to compile GreenDroid itself, but have failed to compile Financisto. When I try to "compile" Financisto resources like that:

aapt.exe package -m -J f:\fin\src -M f:\fin\AndroidManifest.xml -A assets 
         -S f:\fin\res -I c:\android-sdk\platforms\adroid-8\android.jar

But aapt throws the next error:

No resource found that matches the given name (at 'theme' with value
'@style/Theme.GreenDroid').

As I understand it's because AndroidManifest contains

<manifest ...>
  <aplication android:theme="@style/Theme.GreenDroid" ...

Theme.GreenDroid defined in GreenDroid/res/values/gd_themes.xml I've tried to google it but didn't manage to find an answer: how I shoud make this style from GreenDroid visible from Financisto?

It seems author of Financisto uses IntilliJ & Mac, but I want to compile it from console & Win7, so asking an author about how to compile it not an option.

4

1 回答 1

0

您将需要包含 GreenDroid 项目,作为现有项目的参考。

在 Eclipse 中,右键单击您的项目,然后单击 Properties>Java Build Path,然后将 GreenDroid 添加到 Project 选项卡中。

祝你好运

于 2012-02-11T16:22:00.990 回答