Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency com.google.android.libraries.places:places from 3.3.0 to 3.4.0 #135

Merged
merged 5 commits into from
Mar 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions android/feature/range/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,3 @@ dependencies {
implementation(libs.gms.places)
implementation(libs.jsr305)
}

android.defaultConfig.consumerProguardFile("src/main/proguard.pro")
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
package com.google.errorprone.annotations;

/**
* Workaround for <code>class file for com.google.errorprone.annotations.RestrictedInheritance not found</code>.
*
* <pre><code>
* warning: Cannot find annotation method 'explanation()' in type 'RestrictedInheritance'
* warning: Cannot find annotation method 'link()' in type 'RestrictedInheritance'
* warning: Cannot find annotation method 'allowedOnPath()' in type 'RestrictedInheritance'
* warning: Cannot find annotation method 'allowlistAnnotations()' in type 'RestrictedInheritance'
* </code></pre>
*
* @see <a href="https://github.com/google/error-prone/issues/4335">Report</a>
*/
public @interface RestrictedInheritance {
String explanation();
String link();
String allowedOnPath();
Class<?>[] allowlistAnnotations();
}
12 changes: 0 additions & 12 deletions android/feature/range/src/main/proguard.pro

This file was deleted.

2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ google-cloud-sdk = "455.0.0"
google-appengine = "2.0.25"
google-appengine-plugin = "2.8.0"
google-maps = "18.2.0"
google-places = "3.3.0"
google-places = "3.4.0"
google-datastore = "2.18.6"

micronaut = "4.3.6"
Expand Down