Hello.
I’m trying to install my custom app on self-hosted shopware 6 shop. I’m using shopware version 6.4.20.2 .
I’ve created app in custom/apps/MyExampleApp and placed there manifest.xml file. So my app consist of one manifest file: custom/apps/MyExampleApp/manifest.xml
<manifest xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/shopware/shopware/trunk/src/Core/Framework/App/Manifest/Schema/manifest-2.0.xsd">
<meta>
<name>MyExampleApp</name>
<label>Test label to MyExampleApp</label>
<label lang="de-DE">Test label DE to MyExampleApp</label>
<description>Test description to MyExampleApp.</description>
<description lang="de-DE">Test description DE to MyExampleApp.</description>
<author>Test Developer</author>
<version>1.0.0</version>
<license>MIT</license>
</meta>
</manifest>
Now I’m trying to install it with bin/console app:install --activate MyExampleApp and getting error
[INFO] Could not find any app with this name
I can’t understand why I can’t install test app? Look indo docs and it telling me, that app must be installed in such way…
Would be appriciated for any help.