I'm working on an Android app with Java and SQLite. Instead of SQlite I want to switch to Room. Therefore I have a existing database which I want to include in my App.
But every time I try to do so I'm getting an error message:
The problem is that the expected part and the found part are exactly the same. I even checked it with a string comparer. My database schema are also perfectly matching.
Is this just a weird bug or does anybody have the same error?
But every time I try to do so I'm getting an error message:
Code:
java.lang.IllegalStateException: Pre-packaged database has an invalid schema: MY_TABLE(com.example.myapp.Database.Entities.myEntity).
Expected:
...
Found:
...
The problem is that the expected part and the found part are exactly the same. I even checked it with a string comparer. My database schema are also perfectly matching.
Is this just a weird bug or does anybody have the same error?