I know there is Alt + Enter combination to extract single String to string resource. But I am wondering is there anything that I can extract all string of my project into string resource?
Also Android studio not making same String to string resource if I make one of them.
String s = "Hello World";
String s2 = "Hello World";
For example. I make "Hello World" to string resource still another remain Hardcoded in same file as well in the project too.
String s = getString(R.string.helloworld);
String s2 = "Hello World";
If anyone know something like that.