Questions tagged [bixbystudio]

189 questions
1
vote
2 answers

will using git interfere with bixby IDE?

I want to use git for version control of my bixby capsule folder. Is it safe? I initiated a repository and checked it in. Here is my .gitignore. *training.bxb .DS_Store I want to know if it is safe to roll back to previous commits, etc. in a…
Fred Zimmerman
  • 1,178
  • 3
  • 13
  • 29
1
vote
3 answers

Is there any session storage in Bixby other than $vivContext?

Can we store concept value or action name values in session or is there any temporary storage? I only found $vivContext which is available all across the session but we cant store the values there also.
1
vote
1 answer

What is the difference between type(fetch) and type(search) in Bixby actions?

What is the difference between type(fetch) and type(search) in Bixby actions? Is the only difference in the number of inputs?
thedreamsaver
  • 1,294
  • 4
  • 16
  • 27
1
vote
1 answer

No voice output in simulator after update to 6.14

After updating the IDE yesterday to 6.14, I'm not getting any audio in the simulator. On-device testing is fine, and remains unchanged, so it doesn't seem to an issue with my capsule. This could be something coincidental on my end with hardware…
sarkon
  • 187
  • 2
  • 8
1
vote
1 answer

How do I get rid of WARN Pet.species can be multi-cardinal?

In my result-view, in this if clause, I get the warning "WARN pet.species can be multi-cardinal". What does this mean and how do I get rid of it? result-view { match: Pet (pet) render{ layout{ section{ content{ …
1
vote
1 answer

How to access capsule info in Javascript?

How can I access capsule-specific information in Javascript code? I want to include my capsule id and version in a User-Agent when communicating with my backend. Ideally I would also be able to get the Bixby version and Android version my capsule is…
Bernd Kampl
  • 4,837
  • 4
  • 21
  • 26
1
vote
1 answer

How can I let the user give NL input when showing them an input-view?

I have a capsule that calculates something based on user input. The user needs to tell my capsule an originating country (FromCountryConcept), destination country (ToCountryConcept), and a text (LetterContentConcept). Since the country concepts are…
Bernd Kampl
  • 4,837
  • 4
  • 21
  • 26
1
vote
1 answer

How does Bixby retain data from a previous NL input?

I don't understand the way Bixby retains data from previous NL Input. The following example uses the capsule capsule-sample-shirt. I first use the NL input find 2 medium shirts to get a list of shirts. I click on any of those (here i use the…
Bernd Kampl
  • 4,837
  • 4
  • 21
  • 26
1
vote
1 answer

How to prevent duplicate action execution in Bixby?

I want to implement a capsule that does a calculation if the user provides the full input necessary for the calculation or asks the user for the necessary input if the user doesn't provide the full input with the very first request. Everything works…
Bernd Kampl
  • 4,837
  • 4
  • 21
  • 26
1
vote
2 answers

How do you test capsules that access user profile?

I am interested in making a capsule that will pull information like the user's email and address from their profile. According to this, it seems like this is entirely possible, however is there a way to create a user profile in the simulator and…
bigchungus
  • 217
  • 1
  • 8
1
vote
2 answers

How do I have bixby use app-launch to open google maps?

I am trying to open google maps using the on-click key from a compound card, but I don't know what to include in the payload-URI key for app-launch. The documentation uses the example which is commented out, but I do not know what to fill in for the…
1
vote
1 answer

Warning message in capsule.bxb

I have created a sample bixby capsule and it was working fine till last week. I have opened the capsule today to find a warning message in my capsule.bxb file and my capsule stopped working. Here is the warning message : WARN_DEPRECATED Add…
1
vote
1 answer

Set header in HTTP getUrl

I am trying to fetch data from http getUrl function but unable to set the header in request. var response = http.getUrl(url,{format:'json'}); In response I am getting data in Content-Type text/html; charset=utf-8 I need to set header…
Sikander
  • 654
  • 1
  • 7
  • 21
1
vote
1 answer

Show more possibility in cell area in Bixby

The user says: "Show me Chinese menu" I have used cell area to show food items because this is the layout I wanted in my card (vertical and small image). However, because I have more than 80 items to list down, is it possible that first I show the…
Rahul Gupta
  • 972
  • 11
  • 29
1
vote
1 answer

Bixby: How do I set an initial-value to self BirthdayInfo in a date-picker within a input-view?

What additional steps do I need to take set the date-picker's initial-value to the user's birthday using the viv.self library? Is this the best place to handle this? Currently I am setting the default to 30 Years Prior. render { date-picker { //…
Chris W
  • 63
  • 5