Forum Discussion

Hiral_Patel's avatar
Hiral_Patel
Copper Contributor
Jul 29, 2021

Teams Messaging extension is not showing "choiceset" field in the android teams app and for IOS.

I have created one teams messaging extension.

In which for input parameters in manifest file i have used one "choiceset" input parameter and text fields that is working fine in desktop teams and on browser, but when I try to use same teams extension from  android, drop down  for Choiceset is missing there.

 

And in IOS its not even opening the screen for input parameters.

Below code i have used for "Choiceset".

 

{
"name": "canvas",
"title": "Screen Canvas (Optional)",
"description": "",
"inputType": "choiceset",
"choices": [
{
"title": "AR Camera",
"value": "1"
},
{
"title": "Black Background",
"value": "2"
},
{
"title": "White Background",
"value": "3"
}
]
},

 

Resources