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
My guess is that the default encoding of the platform you are working on is not set correctly.
Maybe try to set the encoding for this project via Gradle options. Something like:
tasks.withType<JavaCompile> {
// Note: Gradle defaults to the platform default encoding, make sure to always use UTF-8 for UTF-8 tests.
options.encoding = "UTF-8"
}
Note: This project is not longer actively maintained. If you are looking for an easy to use and efficient database solution, please check out our other project ObjectBox.
I just realized the issue is with the greendao task. I guess you should check that the encoding for the JVM used to run Gradle has UTF-8 configured as its encoding.
Execution failed for task ':app:greendao'.
May I ask how to solve this problem
I have tried many solutions, but none of them are feasible
The text was updated successfully, but these errors were encountered: