あなたのスクリーンショットの右端にあるヒントに気付きましたか? zipファイルのルートwwwフォルダにconfig.xmlをインクルードする必要があります。これにより、名前、バージョン、アイコン、スプラッシュスクリーン、プラグイン、その他多くの設定をアプリケーションに指定できます。
ここにはサンプルのconfig.xmlがあります。 3行目のアプリケーション名を確認してください:
<?xml version='1.0' encoding='utf-8'?>
<widget id="com.myapp.mobile" version="2.25" xmlns="http://www.w3.org/ns/widgets">
<name>My Amazing App</name>
<description>This is the best app ever.</description>
<author email="[email protected]" href="http://www.myapp.com">Amazing App Team</author>
<preference name="phonegap-version" value="cli-6.3.0" />
<preference name="permissions" value="none" />
<preference name="orientation" value="portrait" />
<preference name="target-device" value="universal" />
<preference name="fullscreen" value="false" />
<plugin name="cordova-plugin-inappbrowser" spec="1.3.0" />
<plugin name="cordova-plugin-device" spec="1.1.2" />
<plugin name="cordova-plugin-splashscreen" spec="3.2.2" />
<icon src="icon.png" />
<splash src="splash.png" />
</widget>
本当にありがとうございました。実際はconfig.xmlのwwwフォルダを置かないケースでした。 – Djallas