my line : <action android:name="@string/s" />
changes to <action android:name="@strings/s1" />
when I hit the Run app button and since I don't have a string named s1 it gives me an error :
Error:(31, 39) No resource found that matches the given name (at 'name' with value '@strings/s1').
Also whether it should be @string/ or @strings/?(cause my guide says it should me @string/)
I tried putting : <action android:name="R.strings.s" />
but the same result