Android Question InAppReview issue with S22 Ultra phones

Marco Nissen

Active Member
Licensed User
Longtime User
Hi

I get a huge increase of crashes on S22 Ultra phones, when the app uses the InAppReview library
EDIT: other Samsung phones, or Google Pixel etc seem to be fine - I just bought an S21 to see the issue myself, but can't replicate it.

Has anybody experienced this, and can this be resolved?

I had to upload a new version without the library, but that's not ideal

Thanks
Marco

crash details:
android.content.ActivityNotFoundException:
  at android.app.Instrumentation.checkStartActivityResult (Instrumentation.java:2098)
  at android.app.Instrumentation.execStartActivity (Instrumentation.java:1747)
  at android.app.Activity.startActivityForResult (Activity.java:5473)
  at android.app.Activity.startActivityForResult (Activity.java:5431)
  at android.app.Activity.startActivity (Activity.java:5817)
  at android.app.Activity.startActivity (Activity.java:5770)
  at com.google.android.play.core.review.zzd.launchReviewFlow
  at com.pendrush.inappreview.wrapper.InaAppReviewWrapper.launchReviewX (InaAppReviewWrapper.java:77)
  at com.pendrush.inappreview.wrapper.InaAppReviewWrapper.access$000 (InaAppReviewWrapper.java:25)
  at com.pendrush.inappreview.wrapper.InaAppReviewWrapper$1.onComplete (InaAppReviewWrapper.java:63)
  at com.google.android.play.core.tasks.zza.run
  at android.os.Handler.handleCallback (Handler.java:938)
  at android.os.Handler.dispatchMessage (Handler.java:99)
  at android.os.Looper.loopOnce (Looper.java:226)
  at android.os.Looper.loop (Looper.java:313)
  at android.app.ActivityThread.main (ActivityThread.java:8663)
  at java.lang.reflect.Method.invoke (Native Method)
  at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:567)
  at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1135)
 
Last edited:

DonManfred

Expert
Licensed User
Longtime User
Yes it usually happens when you upload and new update and people are getting the update alert
So you are missing to add a specific activity to add to the manifest then?
 
Upvote 0

Marco Nissen

Active Member
Licensed User
Longtime User
So you are missing to add a specific activity to add to the manifest then?
I didn't miss to add anything - in most cases the library works fine, it's just strange to see the increase particularly for S22 phones
I bought a S21 but cannot see any issue, but don't want to spend extra €€€ only for seeing an issue on the expensive S22 ultra
 
Upvote 0

Pendrush

Well-Known Member
Licensed User
Longtime User
Line 77, where error is rised:
Java:
 Task<Void> flow = manager.launchReviewFlow(ba.activity, reviewInfo);
Maybe @Erel can help?
 
Upvote 0
Top