Search code examples
bixby

Bixby Studio Simulator doesn't show me rendered views


I was expecting that the Bixby Simulator would show me the rendered view, but it only shows me the dialog I have given and any converstation-driver.

I am using the current Bixby Studio (version 6.8.2-r19g.7538) on Windows 10 Pro 64 bit and I am having a de-DE capsule.

My result-view looks like this - the respective action of type Search is triggered:

result-view {
    match: _ (this)

    render {
        layout {
            section {
                content {
                    single-line {
                        text {
                            value {
                                template ("abc")
                            }
                            style (Title_M)
                        }
                    }
                }
            }
        }
    }   
}         

The Debugger shows me the following:

Evaluate render block
    resources/base/views/Test.view.bxb
        [section]
            [single-line]
                [text]
                    value abc
                    style Title_M
    Rendered layout template

enter image description here


Solution

  • After reaching out the Samsung Bixby Dev Team the problem is that my Windows user name included spaces, e.g. "User name", and therefore my Windows user folder contained spaces as well, e.g. "C:\Users\User name\". That was a problem, so if you get rid of any spaces in your user folder path, e.g. "C:\Users\Username\" then it fixes it.