-
Notifications
You must be signed in to change notification settings - Fork 533
Description
Copied bug from microsoft/AdaptiveCards#9315
Steps to reproduce
Target Platforms
iOS, Android
SDK Version
4
Application Name
Microsoft Teams
Problem Description
Action.Execute of Adaptive card Not Working on Teams Mobile Apps (iOS & Android)
The Action.Execute functionality is not working on the Microsoft Teams mobile applications for both iOS and Android. This functionality works correctly on the Microsoft Teams PC and Web app.
IOS Version - 26.2
IOS Teams version - 7.22.77.2025223301/1213
Android Version - 16.0.1.300
Android Teams version - 1416/1.0.0.2025224102/1215
Screenshots
second.issue.iOS.Recording.mp4
second.issue.Android.Recording.mp4
Card JSON
{
"$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
"type": "AdaptiveCard",
"version": "1.4",
"body": [
{
"type": "TextBlock",
"text": "Create a New Library Entry",
"weight": "Bolder",
"size": "Medium",
"wrap": true
},
{
"type": "Input.Text",
"id": "question",
"label": "Question",
"placeholder": "Enter your question",
"isRequired": true,
"errorMessage": "Question is required"
},
{
"type": "Input.Text",
"id": "answer",
"label": "Answer",
"placeholder": "Enter your answer",
"isMultiline": true,
"isRequired": true,
"errorMessage": "Answer is required"
},
{
"type": "Input.ChoiceSet",
"id": "stackID",
"label": "Library Location",
"isRequired": true,
"errorMessage": "Library location is required",
"placeholder": "Select location",
"choices": [
{
"$data": "${items}",
"title": "${name}",
"value": "${id} "
}
],
"style": "compact"
}
],
"actions": [
{
"type": "Action.Execute",
"title": "Create Library Entry",
"verb": "createLibraryEntry"
}
]
}
Sample Code Language
No response
Sample Code
No response
Expected behavior
Action.Execute of Adaptive card should work on Teams Mobile Apps (iOS & Android)
Actual behavior
Action.Execute of Adaptive card Not Working on Teams Mobile Apps (iOS & Android)
Error details
No response