Unity-Technologies / uaal-example

Other
736 stars 234 forks source link

Error : android.content.res.Resources$NotFoundException: String resource ID #0x0 #48

Open jvankooo opened 3 years ago

jvankooo commented 3 years ago

Unity expects a string called 'game_view_content_description' which is missed while bundling the app. Thus, resource not found exception occurs.

Adding <string name="game_view_content_description">Game view</string> to Strings.xml solves the issue.

CSaratakij commented 2 years ago

Thank you for release me from 2 hours of pain...

bk138 commented 2 years ago

FWIW, also described in https://forum.unity.com/threads/unity-2018-3-6-upgrade-to-unity-2018-4-has-bug.681997/

JaneWu423 commented 1 year ago

Life saver...

ag-richa-13 commented 8 months ago

I added "Game view", but still it is not working.

Mustafax06 commented 6 months ago

I added "Game view", but still it is not working.

The key (ID) is required, not the value

Vamsiraj13 commented 2 months ago

So if we just add this unused string in the strings.xml file, the issue will be fixed?