I am using an broadcast receiver for Intent.ACTION_BATTERY_CHANGED.
Rate at which I receive this intent in my application is every 5 sec. But I want to increase this rate as fast as possible.
I dont know If this is possible or not.
Help me if it is possible.
I don’t think it’s possible. The reason is really in the class name, its a receiver. When you register a receiver it has an exposed method which is called whenever the system detects the ACTION_BATTERY_CHANGED intent. The rate at which you receive this is based purely on the rate at which the system broadcasts the event.