It looks like you're editing the wrong manifest. Are you editing the manifest found in Azure Portal?
Could you pleases build a manifest for your Teams Bot?
App manifest schema for Teams
{
"$schema": "https://developer.microsoft.com/json-schemas/teams/v1.7/MicrosoftTeams.schema.json",
"manifestVersion": "1.7",
"version": "1.0.0",
"id": "<myAppId>",
"packageName": "com.notification.bot",
"localizationInfo": {
"defaultLanguageTag": "en-us",
"additionalLanguages": [
]
},
"developer": {
"name": "My Name",
"websiteUrl": "https://dev.botframework.com/",
"privacyUrl": "https://aka.ms/bf-privacy",
"termsOfUseUrl": "https://aka.ms/bf-terms",
"mpnId": "<random ID>"
},
"name": {
"short": "Notification Bot",
"full": "GitHub Issue Notification Bot"
},
"description": {
"short": "GitHub Issue Notification Bot",
"full": "GitHub Issue Notification Bot"
},
"icons": {
"outline": "outline.png",
"color": "color.png"
},
"accentColor": "#fc4103",
"configurableTabs": [
],
"staticTabs": [
],
"bots": [
{
"botId": "<myAppId>",
"scopes": [
"team",
"personal",
"groupchat"
],
"needsChannelSelector": false,
"isNotificationOnly": false,
"supportsFiles": false,
"commandLists": [
]
}
],
"connectors": [
],
"composeExtensions": [
],
"permissions": [
"identity",
"messageTeamMembers"
],
"devicePermissions": [
],
"validDomains": [
"token.botframework.com"
],
"showLoadingIndicator": false,
"activities": {
}
}
Create a zip package having these 3 files:
- The manifest.json you created above
- A colored, 192x192 icon
- A white and transparent 32x32 icon
Ref: https://github.com/OfficeDev/Microsoft-Teams-Samples/tree/main/samples/bot-conversation/csharp/TeamsAppManifest
and upload to MS Teams.
https://learn.microsoft.com/en-us/microsoftteams/platform/concepts/deploy-and-publish/apps-upload
Thanks,
Prasad Das
*************************************************************************
If the response is helpful, please click "Accept Answer" and upvote it. You can share your feedback via Microsoft Teams Developer Feedback link.