-3

I made a project named "App37_Gallery&_ScrollView" in Android Studio, although the IDE didn't raise any error, I am unable to RUN it i.e. the won't install on the emulator and IDE says to try to uninstall and then re-install the app.

Could this problem occurred because of that '&' in Project name(Root folder's name not app_name)?

1 Answers1

1

Ampersand is not allowed in project names. Use \u0026 (Unicode definition) or & if you really need it:

<string name = "app_name>App37_Gallery&amp;ScrollView</string>
OneCricketeer
  • 179,855
  • 19
  • 132
  • 245
Flot2011
  • 4,601
  • 3
  • 44
  • 61