The following warning is alerted when dream it add-on is uploaded.
Extension is not marked as compatible with Multi Process
The following code exists in package.json.
“permissions”: {
“multiprocess”: true
}
Thanks in advance.
The following warning is alerted when dream it add-on is uploaded.
Extension is not marked as compatible with Multi Process
The following code exists in package.json.
“permissions”: {
“multiprocess”: true
}
Thanks in advance.
Are you using cfx
? This is not supported for cfx
. Only for jpm
. You should update to jpm
as cfx
addons are being rejected now.
using jpm itself.
my package.json is as follows
{
“title”: “Dream It”,
“name”: “dreamit”,
“version”: “0.0.10”,
“description”: “Copy favourite images to dreamstream.com”,
“main”: “index.js”,
“author”: “10kinfo.com”,
“permissions”: {
“multiprocess”: true
},
“engines”: {
“firefox”: “>=38.0a1”,
“fennec”: “>=38.0a1”
},
“license”: “MIT”,
“keywords”: [
“jetpack”
]
}
What does the generated install.rdf
look like?
<em:targetApplication>
<Description>
<em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
<em:minVersion>38.0a1</em:minVersion>
<em:maxVersion>*</em:maxVersion>
<em:targetApplication>
<Description>
<em:id>{aa3c5121-dab2-40e2-81ca-7ea25febc110}</em:id>
<em:minVersion>38.0a1</em:minVersion>
<em:maxVersion>*</em:maxVersion>
</Description>
Can you please reformat that so everyone can read it?
Anyway, did you run jpm xpi
with that package.json
file?
Not able to post as the reply button click is saying similar body can not be posted.
Did jpm xpi itself.
You can edit your previous post.
I I copied your package.json file and rum jpm xpi
on it and worked just fine.
What is the output of jpm --version
?
Is fixed, sorry for late reply.