PerfectCarl
PerfectCarl
At the moment, the `updated` status of the modules are entered manually: I expect that **a lot** modules have been updated but I have no time to check them all....
I'm new to your great libraries and I have a hard time making up what each library does. Screenshots might help a lot. Cheers, C.
[AndroidDatabaseLibraryComparison](https://github.com/Raizlabs/AndroidDatabaseLibraryComparison) is a project that compares the performance of different android orm/db libraries. The results can be [found here](http://www.raizlabs.com/dev/2015/02/go-dbflow-fastest-android-orm-database-library/) At the moment, it covers greendao, sugar, activeandroid, sprinkles and dbflow...
I gathered that the following code must be called: ``` java Ollie.with(context) .setName(DB_NAME) .setVersion(DB_VERSION) .setLogLevel(LogLevel.FULL) .setCacheSize(CACHE_SIZE) .init(); ``` What is the best place? The application initialization? How should I set...
I haven't found an `@index` annotation for the `Model` classes. How are indexes generated?
I'm wondering if japid is supposed to work with play 1.2.x on GAE environment
Play lets us override the default page hander for 404 and 500 errors. views/errors/404.html ``` html Not found #{if play.mode.name() == 'DEV'} #{404 result /} #{/if} #{else} Not found ${result.message}...
As much as we love using AA, we don't like referencing enhanced classes (or _classes) in our code. First because it's not architecturally pleasing. And second because when the AA...
At the moment `@Rest` uses spring mobile library to access to remote resources. Recently, new worthy libraries had been released. It might be a good idea to consider opening up...