You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I've been hours banging my head against the wall so I decided to check with you.
I have the impression that there is some sort of incompatibility between Orma and Android's new architecture component 'Room'.
In my project I used to have Orma with a small DB (one table, really). I'm using the latest and greatest:
From that time on, the compiler complains it can't find OrmaDatabase:error: cannot find symbol class OrmaDatabase
When it tries to compile the class that's using it. It fails when I try to declare the first variable that uses it OrmaDatabase db;
I've tried everything: clean, rebuild, invalidate caches... I've even tried to copy the OrmaDatabase.java in the tmp/generated (along with the other files) with no success.
Has anyone faced this issue? Can you help me somehow?
Thanks!
The text was updated successfully, but these errors were encountered:
Dear Orma developers,
I've been hours banging my head against the wall so I decided to check with you.
I have the impression that there is some sort of incompatibility between Orma and Android's new architecture component 'Room'.
In my project I used to have Orma with a small DB (one table, really). I'm using the latest and greatest:
And I've just added Room. It all goes well until I add Room's processor:
From that time on, the compiler complains it can't find OrmaDatabase:
error: cannot find symbol class OrmaDatabase
When it tries to compile the class that's using it. It fails when I try to declare the first variable that uses it
OrmaDatabase db;
I've tried everything: clean, rebuild, invalidate caches... I've even tried to copy the OrmaDatabase.java in the tmp/generated (along with the other files) with no success.
Has anyone faced this issue? Can you help me somehow?
Thanks!
The text was updated successfully, but these errors were encountered: