Cordova打包移动程序默认程序名称是cordovaExample

修改文件名需要更改strings.xml文件内的app_name属性

本例工程目录D:\Soft\PhoneGap\lib\android\example\

打开工程目录下的res\values\strings.xml文件

修改

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">cordovaExample</string>
</resources>

 为

<?xml version="1.0" encoding="utf-8"?>
<resources>
    <string name="app_name">新闻盒子</string>
</resources>

即可

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-08-13
  • 2021-10-10
  • 2021-08-31
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-10-03
  • 2022-12-23
  • 2021-11-30
  • 2022-02-01
  • 2022-01-18
  • 2021-06-20
  • 2022-12-23
相关资源
相似解决方案