Verified
Status Update
Comments
be...@google.com <be...@google.com> #2
The generated dao code has this line:
_observer = new Observer("book","split")
I think annotation processor should handle this type usages of FROM clause.
I found a workaround for this problem. I created an unused entity named "Split" and it works.
_observer = new Observer("book","split")
I think annotation processor should handle this type usages of FROM clause.
I found a workaround for this problem. I created an unused entity named "Split" and it works.
de...@gmail.com <de...@gmail.com> #3
yea we should fix the query parser to understand WITH. Btw, WITH queries are available only in recent versions of SQLite (need to double check but i think it was android 21 +).
pe...@snapchat.com <pe...@snapchat.com> #4
Yigit, I think you assigned this bug to me by mistake. I do not work on this project.
ys...@gmail.com <ys...@gmail.com> #5
sorry, bad autocomplete :/.
yb...@google.com <yb...@google.com> #6
shaileshprasad601@gmail.com updation and bachelor uptodate Country INDIA 800020 on 20.10.2017 with ids TxPy id AJGPP7219K UIDAI 548028010019 voters id JDK1934249 please uptodate in your records.
yb...@google.com <yb...@google.com> #7
The House of Books is a haven for book lovers, filled with timeless stories and knowledge. From bestsellers to rare collections, there's something for everyone. Explore captivating tales, expand your horizons, and get lost in the magic of reading. Visit us today and find your next favorite book. Visit https://houseofbooks.pk/products/stories-from-quran-of-prophets-20-pcs-books-set
ys...@gmail.com <ys...@gmail.com> #8
ya...@google.com <ya...@google.com> #9
That answer is correct, and this behavior is a bug. I'm fixing it.
ch...@gmail.com <ch...@gmail.com> #10
Is this issue solved? I am facing this issue on 3.0.0-alpha6.
jo...@gmail.com <jo...@gmail.com> #11
It's fixed on 1.0.0-alpha7 ch not sure if you mistyped 3.0.0 instead of 1.
my...@gmail.com <my...@gmail.com> #12
This is fixed for me using arch components 1.0.0-alpha5. See https://developer.android.com/topic/libraries/architecture/release-notes.html
Gradle build tools 3.0.0-alpha7 is an unrelated update to the build tools.
Gradle build tools 3.0.0-alpha7 is an unrelated update to the build tools.
yb...@google.com <yb...@google.com>
th...@gmail.com <th...@gmail.com> #13
Hi, i'm getting something simliar with version 1.0.0 (stable) of room compiler:
Caused by: java.util.NoSuchElementException: List is empty.
at kotlin.collections.CollectionsKt___CollectionsKt.first(_Collections.kt:178)
at android.arch.persistence.room.solver.TypeAdapterStore.findColumnTypeAdapter(TypeAdapterStore.kt:235)
at android.arch.persistence.room.solver.TypeAdapterStore.findCursorValueReader(TypeAdapterStore.kt:183)
at android.arch.persistence.room.solver.TypeAdapterStore.findRowAdapter(TypeAdapterStore.kt:341)
at android.arch.persistence.room.solver.TypeAdapterStore.findQueryResultAdapter(TypeAdapterStore.kt:270)
at android.arch.persistence.room.solver.ObservableQueryResultBinderProvider.provide(ObservableQueryResultBinderProvider.kt:39)
I can't figure out what i'm missing...
The error is on a different step of the annotation proccessing but seems to be related to this issue...
Caused by: java.util.NoSuchElementException: List is empty.
at kotlin.collections.CollectionsKt___CollectionsKt.first(_Collections.kt:178)
at android.arch.persistence.room.solver.TypeAdapterStore.findColumnTypeAdapter(TypeAdapterStore.kt:235)
at android.arch.persistence.room.solver.TypeAdapterStore.findCursorValueReader(TypeAdapterStore.kt:183)
at android.arch.persistence.room.solver.TypeAdapterStore.findRowAdapter(TypeAdapterStore.kt:341)
at android.arch.persistence.room.solver.TypeAdapterStore.findQueryResultAdapter(TypeAdapterStore.kt:270)
at android.arch.persistence.room.solver.ObservableQueryResultBinderProvider.provide(ObservableQueryResultBinderProvider.kt:39)
I can't figure out what i'm missing...
The error is on a different step of the annotation proccessing but seems to be related to this issue...
yb...@google.com <yb...@google.com> #14
#13, can you provide a sample app w/ a new bug ? it is probably different.
th...@gmail.com <th...@gmail.com> #15
#14 nevermind... I was trying to check if a row exists on table by performing a select count() and returning a LiveData of Boolean as I'm used to... but this time i miss the count() keyword so the compiler couldn't find a proper type to bind the result... Sorry, it was my bad!
Description
Version used:1.0.0-alpha4
Devices/Android versions reproduced on: not relevant
- Sample project to trigger the issue.
- A screenrecord or screenshots showing the issue (if UI related).
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> java.util.NoSuchElementException: List is empty.
After change version from alpha3 to alpha4, I'm get this error.
:app:compileDebugJavaWithJavac FAILED
FAILURE: Build failed with an exception.
* What went wrong:
Execution failed for task ':app:compileDebugJavaWithJavac'.
> java.util.NoSuchElementException: List is empty.
When swithing back to alpha3 everything is fine.