flutter - App Name Not Updating in Android Recent Apps View Despite Manifest and Strings Configuration - Stack Overflow
- c - Solaris 10 make Error code 1 Fatal Error when trying to build python 2.7.16 - Stack Overflow 推荐度:
- javascript - How to dismiss a phonegap notification programmatically - Stack Overflow 推荐度:
- javascript - Get the JSON objects that are not present in another array - Stack Overflow 推荐度:
- javascript - VS 2015 Angular 2 import modules cannot be resolved - Stack Overflow 推荐度:
- javascript - Type 'undefined' is not assignable to type 'menuItemProps[]' - Stack Overflow 推荐度:
- 相关推荐
I've updated my Flutter app's name so that it displays correctly as "ATTJ SH" on the Android home screen. However, when I swipe up to view the recent apps (the Android app switcher), the app still shows as "Application" at the top-left corner instead of "ATTJ SH."
I have the following setup in AndroidManifest.xml:
<application
android:label="@string/app_name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
...>
</activity>
</application>
And in strings.xml:
<resources>
<string name="app_name">ATTJ SH</string>
</resources>
I've run flutter clean, reinstalled the app, and confirmed that there are no additional strings.xml files in other locales that might override the name. The home screen shows "ATTJ SH" correctly, but the recent apps view still shows "Application."
What other configurations or settings could cause this discrepancy? How can I ensure that the app name displayed in the app switcher matches the updated name?
enter image description here enter image description here
I've updated my Flutter app's name so that it displays correctly as "ATTJ SH" on the Android home screen. However, when I swipe up to view the recent apps (the Android app switcher), the app still shows as "Application" at the top-left corner instead of "ATTJ SH."
I have the following setup in AndroidManifest.xml:
<application
android:label="@string/app_name"
android:name="${applicationName}"
android:icon="@mipmap/ic_launcher">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
...>
</activity>
</application>
And in strings.xml:
<resources>
<string name="app_name">ATTJ SH</string>
</resources>
I've run flutter clean, reinstalled the app, and confirmed that there are no additional strings.xml files in other locales that might override the name. The home screen shows "ATTJ SH" correctly, but the recent apps view still shows "Application."
What other configurations or settings could cause this discrepancy? How can I ensure that the app name displayed in the app switcher matches the updated name?
enter image description here enter image description here
Share Improve this question asked 16 hours ago yaoyao 11 Answer
Reset to default 0Use package rename to easily rename your app in all platforms without missing anything. Follow the instructions in package documentation
- 大本营不保?美国安卓系统激活量超iOS
- 微软Surface平板电脑 是矛盾的存在吗?
- 2020年或诞生超级计算机:相当5000万台笔记本
- Python Selenium Error - Sandbox cannot access executable - Stack Overflow
- java.lang.NoClassDefFoundError: Could not initialize class org.apache.spark.SparkThrowableHelper$ - Stack Overflow
- frontend - Rescript and Fetch with Post Request - Stack Overflow
- maven - Quarkus Live Reload in nested directories - Stack Overflow
- You don’t have permission to view or edit anything. Django Admin. Web-site for school - Stack Overflow
- mvvm - How to Call ViewModelProvider without ref in Flutter - Stack Overflow
- ggplot2 - alluvial diagram in R, Error: Data not in recognizable format - Stack Overflow
- overlap - Canvas3D obscures JMenuBar - Stack Overflow
- pytorch - how to get custom column in the model's forward() function when training with Huggingface Trainer? - Stack Ove
- c# - Unity build error for Android when use CMake with Ninja on Mac - Stack Overflow
- java - Spring FileNotFoundException when accessing a file from another lab - Stack Overflow
- Is there a class Nethereum.Signer.Transaction? - Stack Overflow
- arkit - Detecting and Using 2 Different Vertical Planes - Stack Overflow
- swift - Codable class does not conform to protocol Decodable because of TimeStamp, new Error wasn't there before - Stack