导入的 Cordova android 应用程序的应用程序名称问题

Posted

技术标签:

【中文标题】导入的 Cordova android 应用程序的应用程序名称问题【英文标题】:App name issue with Imported Cordova android app 【发布时间】:2016-01-17 11:55:56 【问题描述】:

我正在使用 Cordova 创建 android 应用程序。为此,我在 cmd 中使用以下命令。

    cordova 创建 example com.path.example ExampleApp cd 示例 cordova 平台添加 android cordova 插件添加 cordova-plugin-network-information cordova build android

完成这些过程并成功复制 assets/www 文件夹中的所有网页编码。 之后

我将它导入到 Eclipse 中,项目创建为 MainActivity 而不是 ExampleApp。我也无法更改应用程序名称。我在 config.xmlAndroidManifest.xml 文件中更改了应用名称并尝试了很多东西。但没用。

所以我创建了一个新项目并导入。但我无法导入该应用程序,因为新应用程序也有 MainActivity 作为应用程序名称。我在 *** 和其他网站上搜索和搜索了更多内容。但无法修复。请指教。

【问题讨论】:

Android 和 Cordova 的官方 SDK 是 Android Studio。看看这里cordova.apache.org/docs/en/5.1.1/guide/platforms/android/… 和这里developer.android.com/sdk/index.html 【参考方案1】:

我们可以通过以下步骤解决这个问题,

    从以下位置打开 AndroidManifest.xml 文件 平台->android->AndroidManifest.xml 更改为 android:name="Project_name"android:label="@string/app_name"activity

<application android:hardwareAccelerated="true" android:icon="@drawable/icon" android:label="@string/app_name" android:supportsRtl="true"> <activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/app_name" android:launchMode="singleTop" android:name="FLP" android:theme="@android:style/Theme.Black.NoTitleBar" android:windowSoftInputMode="adjustResize"> <intent-filter android:label="@string/launcher_name"> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity> </application>

    然后将您的项目导入 Eclipse。

【讨论】:

以上是关于导入的 Cordova android 应用程序的应用程序名称问题的主要内容,如果未能解决你的问题,请参考以下文章

将 Cordova 离子项目导入 Android 工作室?

将 Cordova 6.1.2-Project 导入 Eclipse:Android 依赖项中缺少 cordovalib.jar

用于智能电视的 Cordova/ionic 应用程序

Cordova Android:从任意目录打开 SQLite .db 数据库

Cordova - 对 Win10 中的共享文件夹进行读/写访问

如何在 Android Studio 中更新 Cordova 版本