【发布时间】:2018-10-17 00:35:19
【问题描述】:
我正在开发一个 NativeScript 应用程序,我想在 google play store 上发布该应用程序,并在其名称中使用撇号,例如Naren 的应用程序。 它在 ios 上运行良好,因为我必须按照this 示例中的描述更改 info.plist 文件。 但对于 Android,它会在 ('s) 之后修剪名称,并将其作为 Naren 而不是 Naren 的应用程序部署在设备/模拟器上。
这是我的 AndroidManifest.xml 中的代码
<application
android:name="com.tns.NativeScriptApplication"
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name"
android:theme="@style/AppTheme">
在 strings.xml 中(在 values 和 values-v21 文件夹中)
<resources>
<string name="app_name">Naren's Orders Dev</string>
<string name="title_activity_kimera">Naren's Orders Dev</string>
</resources>
有人经历过吗?
【问题讨论】:
标签: android ios nativescript