hey experts,
This is very basic.
I want to update the description of a resource.
I can get the description by the following line
String desc = aResource.getDescription();
String newDesc = "new description";
Now how do I update the resource with this new description?
Thank you.