I have a java class and here is the code
public class credentials {
public static String getName(String name) {
String name1 = name;
return name1;
}
}
Heres how I pass a value
credentials.getName("Sample Name");
my prob here is how can i get that value
How can I get the value that i passed from another classes?
Its like im passing it using another activity and I need to get it from another