A
Android Central Question
This crash is happening for my app with the below trace and interestingly only for OnePlus5 device with Android 7.0.
android.app.RemoteServiceException:
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1725)
at android.os.Handler.dispatchMessage (Handler.java:102)
at android.os.Looper.loop (Looper.java:154)
at android.app.ActivityThread.main (ActivityThread.java:6334)
at java.lang.reflect.Method.invoke (Method.java)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:776)
After looking at the stacktrace of this crash I am unable to make out how to fix this or where is the issue that is happening. On some investigation I found this is related to the resource Id's getting stale when new version of the app is released (do not know how true is that). If that is the case then how do I fix this?
android.app.RemoteServiceException:
at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1725)
at android.os.Handler.dispatchMessage (Handler.java:102)
at android.os.Looper.loop (Looper.java:154)
at android.app.ActivityThread.main (ActivityThread.java:6334)
at java.lang.reflect.Method.invoke (Method.java)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:886)
at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:776)
After looking at the stacktrace of this crash I am unable to make out how to fix this or where is the issue that is happening. On some investigation I found this is related to the resource Id's getting stale when new version of the app is released (do not know how true is that). If that is the case then how do I fix this?