Assigned
Status Update
Comments
ku...@google.com <ku...@google.com>
ku...@google.com <ku...@google.com> #2
We gave up upgrading to Room because we need to use FTS3/FTS4 virtual tables. Any plants to support it?
ch...@google.com <ch...@google.com> #3
Florina Muntenescu (Android developer advocate at Google) told me that FTS support will definitely NOT be in Room 1.0 final. It is postponed to an indeterminate later version.
Description
- HeifWriter.Builder#setGridEnabled() is not working.
- Even if setGridEnabled(false) is called, grid is always enabled.
# Environment
- Pixel 2
- Android 9 (PQ2A.190405.003)
# Steps to reproduce the problem (including sample code if appropriate).
- Initialize Builder with some parameters.
- Call setGridEnabled(false).
- Create a HeifWriter instance from the Builder.
- Add bitmap to it and create a .heic file.
```kotlin
val builder = HeifWriter.Builder(destFileDescriptor, bitmap.width, bitmap.height, HeifWriter.INPUT_MODE_BITMAP)
builder.setGridEnabled(false)
...
val writer = builder.build()
writer.start()
writer.addBitmap(bitmap)
writer.stop()
writer.close()
```
# What happened.
- a .heic file will be created but grid is enabled.
# What you think the correct behavior should be.
- a .heic file which grid is disabled should be created.