We tried creating a personal app in Teams developer portal (https://dev.teams.microsoft.com/apps), and its giving an error in the Publish to store page.
Error: Provided add-in package was not understood. Please, make sure that the file being submitted is a valid Office add-in package.
This error is shown even when I create a new app, without entering any configurations also. I was not able to import the sample app given by developer portal as well.
We were able to create apps with no errors until we had the 1.15 manifest version.
This is a blocker for us to go ahead with a Teams store submission.
Sample manifest file which showed up errors:
{
"$schema": "https://developer.microsoft.com/en-us/json-schemas/teams/v1.16/MicrosoftTeams.schema.json",
"version": "1.0.0",
"manifestVersion": "1.16",
"id": "57a782c0-8316-4922-a1da-e20c7a1f92b0",
"packageName": "com.package.name",
"name": {
"short": "Test",
"full": "Booking portal"
},
"developer": {
"name": "ibi",
"mpnId": "",
"websiteUrl": "https://example.com/",
"privacyUrl": "https://example.com/",
"termsOfUseUrl": "https://example.com/"
},
"description": {
"short": "test description",
"full": "long long text"
},
"icons": {
"outline": "outline.png",
"color": "color.png"
},
"accentColor": "#FFFFFF",
"staticTabs": [
{
"entityId": "2fc3eb14-4f86-474b-974e-1d9edaa2c47e",
"name": "home",
"contentUrl": "https://example.com/",
"scopes": [
"personal"
],
"context": [
"personalTab"
]
},
{
"entityId": "about",
"scopes": [
"personal"
]
}
],
"validDomains": [
"example.com"
]
}
Would request the corresponding people related to this issue, to respond to this post, please.
We tried creating an app package in developer portal of Microsoft teams (https://dev.teams.microsoft.com/home). And we expected to not show any errors in publish to store page.