Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
Needs more info comment that > 10 days [ID: 963198]
Comment such as: SPAM, non-actionable [ID: 963127]
Resolved actionable follow-up comments [ID: 963027]
View issue level access limits(Press Alt + Right arrow for more information)
Request for new functionality
View staffing
Description
Feature request
Using the library should be able to assemble an APK.
Issue report
What steps will reproduce the problem?
gradlew build
(or more specificallygradlew :assembleRelease
)Also add the following details:
Solution
From the POM it looks like there's an outdated dependency on androidx viewmodel 2.0.0, because adding:
fixes the issue. The 2.5.0 is needed.
CreationExtras
class the API is non-existent on the default classpath coming from the POM. I wonder if there might be acompileOnly
dependency when places is getting built. From the release notes it looks like minimumWorkaround
If you want to keep viewmodel dependency low, the probably it's worth adding a
-dontwarn class com.google.android.libraries.places.internal.zzls
rule to the places consumer proguard file.