Change app name Capacitor

HI all,
I have just made a prod build for my Capacitor Android application and the name is wrong. It is correct as the app name etc but when your hold onto the application and select more information the app name shows as CapacitorAndroid, like in the attached image. I am wondering how to solve this? I have searched my code for ‘CapacitorAndroid’ and cannot find it anywhere to change

Thanks

Should be on res → values → strings.xml, the app_name value.
Unless you changed android:label="@string/app_name" in AndroidManifest.xml to something else, then it will use whatever you’ve put here instead of the strings.xml value.

1 Like

This was it thank you. I was missing the strings.xml file for some reason