Forum Discussion

vfan140's avatar
vfan140
Copper Contributor
Dec 22, 2023

Adaptive card not Displaying on teams android mobile

my adaptive card doesn't display on android mobile but work on desktop/web/ios.

 

here is my json:

 

{
  "$schema": "http://adaptivecards.io/schemas/adaptive-card.json",
  "type": "AdaptiveCard",
  "version": "1.3",
  "body": [
    {
       "type": "TextBlock",
       "text": "hi~",
       "wrap": true,
       "size": "medium"
    }
  ]
}

 

 

and the code i use adaptive-card:

 

import { AdaptiveCards } from '@microsoft/adaptivecards-tools'

const json = {
   // ....
}

const adaptiveCard = AdaptiveCards.declare(json).render()
// member -> `BotBuilderCloudAdapter.Member`
member.sendAdaptiveCard(adaptiveCard)

 

 

teams app versions:

1416/1.0.0.2023134402/0802

 

 

 

7 Replies

Resources