Hi,
Product titles on Android seem to show “Product Name (<App Name>)”, which is super annoying for displaying in UI.
Is there a way to prevent the app name being added to the end of the product name?
Similar question on SO.
Thanks !
Hi,
Product titles on Android seem to show “Product Name (<App Name>)”, which is super annoying for displaying in UI.
Is there a way to prevent the app name being added to the end of the product name?
Similar question on SO.
Thanks !
If anyone running into the same issue on flutter:
You can remove the the () from the string as follows:
string.replaceAll(RegExp('\\(.*?\\)'), '');
Yes - this is expected behavior on Android, glad you got it resolved.
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.