Assigned
Status Update
Comments
da...@googlemail.com <da...@googlemail.com> #2
Information redacted by Android Beta Feedback.
vi...@google.com <vi...@google.com> #3
Hello,
Kindly share an estimated time stamp while you are facing this issue, it will help us to find relevant logs from the bug report.
da...@googlemail.com <da...@googlemail.com> #4
- Build Number: google/oriole/oriole:13/T3B3.230413.003/9957835:user/release-keys
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
New Bug report added.
Time around 10 AM IST the phone froze again and I had to restart again.
Debugging information
Google Play services
com.google.android.gms
Version 231613044 (23.16.13 (190400-527363516))
System App (Updated)
Android System WebView
com.google.android.webview
Version 561513534 (112.0.5615.135)
System App (Updated)
Network operator: airtel
SIM operator: airtel
Filed by Android Beta Feedback. Version (Updated): 2.33-betterbug.external_20230301_RC01 (DOGFOOD)
To learn more about our feedback process, please visithttps://developer.android.com/preview/feedback#feedback-app .
(Note: It is the build when sending this report. For exact build reference, please see the attached bugreport.)
New Bug report added.
Time around 10 AM IST the phone froze again and I had to restart again.
Debugging information
Google Play services
com.google.android.gms
Version 231613044 (23.16.13 (190400-527363516))
System App (Updated)
Android System WebView
com.google.android.webview
Version 561513534 (112.0.5615.135)
System App (Updated)
Network operator: airtel
SIM operator: airtel
Filed by Android Beta Feedback. Version (Updated): 2.33-betterbug.external_20230301_RC01 (DOGFOOD)
To learn more about our feedback process, please visit
de...@gmail.com <de...@gmail.com> #5
Comment has been deleted.
de...@gmail.com <de...@gmail.com> #6
Comment has been deleted.
vi...@google.com <vi...@google.com> #7
We have shared this with our product and engineering team and will update this issue with more information as it becomes available.
Description
First, I can confirm the Bug is 7.x related, because version 6.0.1 is not affected.
You can reproduce it with Google Play Billing Library 7.x for older devices (Android 6,7).
How to reproduce:
The error message is: classcast exception NoClassDefFoundError com.android.billingclient.api.zzce
The main problem is implements Consumer and the import
import java.util.function.Consumer;
because both are API 24+ related.
I would suggest two solutions to fix the issue:
1.) use androidx.core.util.Consumer; as import. This should be backwards compatible. 2.) or set minSDK to 24+ for BillingApi 7.x
Work-around for affected users:
inside your local build.gradle (app level) add the following lines