GreenDao Android Studio

Tested on Android Studio 2.0 With Android Studio 0.6.1+ (and possibly earlier) you can easily add non android project to your android project as a module. Using below method you can have Java modules(greenDaoGenerator) and Android modules in the same project and also have the ability to compile and run Java modules as stand alone … Read more

GreenDAO schema update and data migration?

Thinking about the pleonasmik’s approach (by the way, thanks, it was really helpfull), I created one MigrationHelper class. How it works: The class catch all the Daos that you got Creates the temporary tables based on the old version’s scheme (generateTempTables method) Import all the data to this new tables (generateTempTables method) Drop all the … Read more