0

I'm investigating greenDAO for an Android version of one of our iOS apps that heavily uses CoreData functionality.

I'm confused on how to start though. I've seen the DaoGeneratorExample code, but I'm not confident on how that relates to my project.

Let's assume my project is called MyApp. Do I need to create a SECOND Android project called MyAppDaoGenerator which I just run to generate java files and put them in the MyApp directories?

Or is the schema generation supposed to exist within the MyApp code?

4

2 に答える 2

3

すべてのコード (ジェネレーターと生成されたコード) を 1 つのプロジェクトに含める簡単な方法は、すべてのジェネレーター コードを Java ライブラリとしてモジュールに含めることです。

このgithub プロジェクトには、ニーズに合わせてインポートおよび変更できる、既に作成されたモジュールがあります。プロジェクトの README には、ジェネレータ コードの実行方法に関する優れたチュートリアルもあります。

ゼロからやりたい場合は、この回答が良い出発点のように見えますが、私は常にインポート モジュール メソッドを使用していました。

于 2016-06-15T06:57:48.540 に答える