I have an IntentService that uses android.support.v4.os.ResultReceiver to transfer data. In IntentService, when I use the ResultReceiver.send method to send the result, Android Studio shows an error saying
ResultReceiver.send can only be called from the same library group (GroupID = com.android.support)
I get a similar message by calling the ResultReceiver constructor. But the code even works with this error. This began to appear after upgrading the support library version to 25.1.1.
What should I do to get around this?
android android-intentservice receiver
kp91
source share