2021年3月10日 星期三

如何手動變更 ionic app 名稱

你可以在專案目錄下找到 config.xml, 將它打開找到名稱的位置, 就可以完成應用程式名稱的修改了。


    <name>myAppt</name>


另一種作法是在 android 目錄下找到檔案 \android\app\src\main\res\values\strings.xml 並開啟它,就可以修改應用程式名稱了。



<?xml version='1.0' encoding='utf-8'?>
<resources>
    <string name="app_name">myApp</string>
    <string name="title_activity_main">myApp</string>
    <string name="package_name">io.ionic.starter</string>
    <string name="custom_url_scheme">io.ionic.starter</string>
</resources>

沒有留言:

張貼留言

[Q&A] Send image from ionic to asp.net core (IFormFile) web api

 [Q] We are looking to upload image from ionic to .net core web api. To achieve this we are using file transfer plugin. So, far we understoo...