I have a android application with two entry points. i.e. I have two icon on home screen but internally they are single application.
I want to know how i can set some parameter in Application object depending on the icon click.
More precisely, I want to maintain a scope variable which will keep information of the scope of my application based on what icon user has clicked. Based on this my common screens will behave differently for both of this entry points.
Application has
getApplicationInfo()and ApplicationInfo hasloadIcon(PackageManager pm)–Retrieve the current graphical icon associated with this item. Is it enough?
I think also that
getPackageName()could be used, too, but the author should use different names for both variants of application.