In my application I have one broadcast receiver. Inside the onReceive() method I am using methods from some other Helper class. Is there a chance anytime when my onReceive will be called, then the Helper class will not be available in memory and will cause ClassNotFoundException or something like that?
In my application I have one broadcast receiver. Inside the onReceive() method I am
Share
No. All classes in your APK will be available to you.