I am aware of the availability of Context.getApplicationContext() and View.getContext(), through which I can actually call Context.getPackageName() to retrieve the package name of an application.
They work if I call from a method to which a View
or an Activity
object is available, but if I want to find the package name from a totally independent class with no View
or Activity
, is there a way to do that (directly or indirectly)?