How do I make my app customizable in Teams

Jono Suave 1 Reputation point
2022-03-17T15:08:40.66+00:00

I'd like to make my Microsoft Teams app icon customizable (like so: https://learn.microsoft.com/en-us/microsoftteams/customize-apps). Is there a manifest property I need to add?

Microsoft Teams
Microsoft Teams
A Microsoft customizable chat-based workspace.
10,307 questions
Microsoft Teams Development
Microsoft Teams Development
Microsoft Teams: A Microsoft customizable chat-based workspace.Development: The process of researching, productizing, and refining new or existing technologies.
3,337 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. JimmyYang-MSFT 53,846 Reputation points Microsoft Vendor
    2022-03-18T08:19:16.437+00:00

    Hi @Jono Suave

    Regarding the sample of mainfest, you could refer to this part of article.

    Teams tag is mainly focused on the general issue of Microsoft Teams troubleshooting. According to your description, your question is more related to Teams development, so I will also add teams-app-dev tag to your thread. Thanks for your understanding!


    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".
    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.



  2. Nivedipa-MSFT 3,031 Reputation points Microsoft Vendor
    2022-03-22T08:02:15.177+00:00

    @Jono Suave

    In manifest file you need to add icons property

    "icons": {
    "outline": "A relative path to a transparent .png icon — 32px X 32px",
    "color": "A relative path to a full color .png icon — 192px X 192px"
    },

    Icons used within the Teams app. The icon files must be included as part of the upload package.

    185464-image.png

    Ref Doc:

    1. https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/apps-package#app-icons
    2. https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/build-and-test/apps-package#app-icons

    Thanks,
    Nivedipa


    If the response is helpful, please click "Accept Answer" and upvote it. You can share your feedback via Microsoft Teams Developer Feedback link.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.