Question

App name shows after product title for Android

  • 26 November 2022
  • 2 replies
  • 347 views

Userlevel 1
Badge +4

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. 

https://stackoverflow.com/questions/16657310/how-can-i-avoid-app-names-in-inapp-item-titles-returned-from-google-play-getskud

 

Thanks ! 


2 replies

Userlevel 1
Badge +4

If anyone running into the same issue on flutter: 

 

You can remove the the () from the string as follows: 

 

string.replaceAll(RegExp('\\(.*?\\)'), '');
Userlevel 3
Badge +7

Yes - this is expected behavior on Android, glad you got it resolved.

Reply